edu.stanford.nlp.tagger.maxent
Class TestClassifier

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

public class TestClassifier
extends java.lang.Object

Tags data and can handle either data with gold-standard tags (computing performance statistics) or unlabeled data. (The Constructor actually runs the tagger. The main entry points are the static methods at the bottom of the class.) Also can train data using the saveModel method. This class is really the entry point to all tagger operations, it seems.

Author:
Kristina Toutanova

Constructor Summary
TestClassifier(TaggerConfig config, MaxentTagger maxentTagger)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TestClassifier

public TestClassifier(TaggerConfig config,
                      MaxentTagger maxentTagger)
               throws java.io.IOException
Throws:
java.io.IOException


Stanford NLP Group