Interface IOnlineLearner<T,​I,​D extends IDataset<I>>

  • Type Parameters:
    T - The type of the target that this IOnlineLearner predicts.
    I - The type of the instances stored in the data set specified by the generic parameter .
    D - The type of the data set used to learn from and predict batches.
    All Superinterfaces:
    IBatchLearner<T,​I,​D>, IPredictiveModel<T,​I,​D>
    All Known Implementing Classes:
    AOnlineLearner, PLNetDyadRanker

    public interface IOnlineLearner<T,​I,​D extends IDataset<I>>
    extends IBatchLearner<T,​I,​D>
    The 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.