T - Type being trained onpublic interface IncrementalTrainer<T>
| Modifier and Type | Method and Description |
|---|---|
void |
reset()
Reset the object to its initial condition, as if
it hasn't seen any training data.
|
void |
train(Iterable<? extends T> data)
Train the object with the given data.
|
void |
train(T annotated)
Train/update object using a new instance.
|
void train(Iterable<? extends T> data)
data - the training datavoid train(T annotated)
annotated - instance to train withvoid reset()