/**
*
*/
package org.streaminer.stream.learner;
import org.streaminer.stream.classifier.Classifier;
/**
* <p>
* A regressor is a classifier with the target variable being a real value.
* </p>
*
* @author Christian Bockermann <chris@jwall.org>
*
*/
public interface Regressor<D>
extends Classifier<D, Double>
{
}