TARGET - The type of the target that this IOnlineLearner predicts.public interface IOnlineLearner<TARGET> extends IBatchLearner<TARGET>
IOnlineLearner models a learning algorithm which works in an online fashion, i.e. takes either a single IInstance or a Set thereof as training input.| Modifier and Type | Method and Description |
|---|---|
void |
update(IInstance instance)
Updates this
IOnlineLearner based on the given IInstance. |
void |
update(java.util.Set<IInstance> instances)
|
traingetConfiguration, predict, predict, setConfigurationvoid update(java.util.Set<IInstance> instances) throws TrainingException
instances - The Set of IInstances the update should be based on.TrainingException - If something fails during the update process.void update(IInstance instance) throws TrainingException
IOnlineLearner based on the given IInstance.instance - The IInstance the update should be based on.TrainingException - If something fails during the update process.