TARGET - The type of the target that this IBatchLearner predicts.public interface IBatchLearner<TARGET> extends IPredictiveModel<TARGET>
IBatchLearner models a learning algorithm which works in a batch fashion, i.e. takes a whole IDataset as training input. It can be trained based on an IDataset in order
to make predictions.| Modifier and Type | Method and Description |
|---|---|
void |
train(IDataset dataset)
Trains this
IBatchLearner using the given IDataset. |
getConfiguration, predict, predict, setConfigurationvoid train(IDataset dataset) throws TrainingException
IBatchLearner using the given IDataset.dataset - The IDataset which should be used for the training.TrainingException - If something fails during the training process.