/** * */ package org.streaminer.stream.classifier; import org.streaminer.stream.learner.Learner; import org.streaminer.stream.model.PredictionModel; /** * <p> * A classifier is basically just a PredictionModel and the associated * learning algorithm. This interface defines that union. * </p> * * @author Christian Bockermann <chris@jwall.org> * */ public interface Classifier<D, T> extends PredictionModel<D, T>, Learner<D, PredictionModel<D, T>> { }