Package 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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description C
trainIncremental(InstanceList trainingInstancesToAdd)
-
-
-
Method Detail
-
trainIncremental
C trainIncremental(InstanceList trainingInstancesToAdd)
-
-