001package javax.visrec.ml.classification;
002
003/**
004 * Binary classifier classifies object into one of two categories (for example: true/false, yes/no, red/blue, spam/not-spam, fraud/not-fraud).
005 * Returns a probability that input object belongs to one of two classes.
006 *
007 * @author Zoran Sevarac
008 */
009public interface BinaryClassifier<T> extends Classifier<T, Float> {
010
011}