cc.mallet.classify
Interface ClassifierTrainer.ByIncrements<C extends Classifier>

All Known Subinterfaces:
ClassifierTrainer.ByInstanceIncrements<C>
All Known Implementing Classes:
NaiveBayesTrainer
Enclosing class:
ClassifierTrainer<C extends Classifier>

public static interface ClassifierTrainer.ByIncrements<C extends Classifier>

For various kinds of online learning by batches, where training instances are presented, consumed for learning immediately. The same instances may be presented more than once to this interface. For example, StochasticGradient, etc conforms to this interface.


Method Summary
 C trainIncremental(InstanceList trainingInstancesToAdd)
           
 

Method Detail

trainIncremental

C trainIncremental(InstanceList trainingInstancesToAdd)