edu.stanford.nlp.tagger.maxent
Class TaggerConfig

java.lang.Object
  extended by edu.stanford.nlp.tagger.maxent.TaggerConfig

public class TaggerConfig
extends Object

Reads and stores configuration information for a POS tagger.

Author:
William Morgan, Anna Rafferty

Nested Class Summary
static class TaggerConfig.Mode
           
 
Field Summary
 boolean sgml
           
 
Constructor Summary
TaggerConfig(String[] args)
           
 
Method Summary
 void dump()
           
 void dump(PrintStream stream)
           
 String getArch()
           
 String getChineseDictionaryPath()
           
 String[] getClosedClassTags()
           
 int getClosedTagThreshold()
           
 int getCurWordMinFeatureThresh()
           
 boolean getDebug()
           
 String getDebugPrefix()
           
 String getDelimiter()
           
 String getDistSimPath()
           
 String getEncoding()
           
 String getFile()
           
 int getIterations()
           
 String getLang()
           
 boolean getLearnClosedClassTags()
           
 int getMinFeatureThresh()
           
 TaggerConfig.Mode getMode()
           
 String getModel()
           
 String[] getOpenClassTags()
           
 int getRareWordMinFeatureThresh()
           
 int getRareWordThresh()
           
 String getSearch()
           
 double getSigmaSquared()
           
 boolean getTokenize()
           
 String getTokenizerFactory()
           
 boolean getUseChineseDict()
           
 boolean getUseDistSim()
           
 boolean getVerbose()
           
 int getVeryCommonWordThresh()
           
 String[] getXMLInput()
           
 String getXMLOutput()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

sgml

public boolean sgml
Constructor Detail

TaggerConfig

public TaggerConfig(String[] args)
             throws IOException
Throws:
IOException
Method Detail

getModel

public String getModel()

getFile

public String getFile()

getSearch

public String getSearch()

getSigmaSquared

public double getSigmaSquared()

getIterations

public int getIterations()

getRareWordThresh

public int getRareWordThresh()

getMinFeatureThresh

public int getMinFeatureThresh()

getCurWordMinFeatureThresh

public int getCurWordMinFeatureThresh()

getRareWordMinFeatureThresh

public int getRareWordMinFeatureThresh()

getVeryCommonWordThresh

public int getVeryCommonWordThresh()

getLang

public String getLang()

getOpenClassTags

public String[] getOpenClassTags()

getClosedClassTags

public String[] getClosedClassTags()

getLearnClosedClassTags

public boolean getLearnClosedClassTags()

getClosedTagThreshold

public int getClosedTagThreshold()

getArch

public String getArch()

getDebug

public boolean getDebug()

getDebugPrefix

public String getDebugPrefix()

getTokenizerFactory

public String getTokenizerFactory()

getDelimiter

public String getDelimiter()

getTokenize

public boolean getTokenize()

getEncoding

public String getEncoding()

getUseDistSim

public boolean getUseDistSim()

getDistSimPath

public String getDistSimPath()

getChineseDictionaryPath

public String getChineseDictionaryPath()

getUseChineseDict

public boolean getUseChineseDict()

getXMLInput

public String[] getXMLInput()

getXMLOutput

public String getXMLOutput()

getVerbose

public boolean getVerbose()

dump

public void dump()

dump

public void dump(PrintStream stream)

getMode

public TaggerConfig.Mode getMode()


Stanford NLP Group