Classification

For now, linlearn provides mainly the scikit-learn compatible BinaryClassifier class for binary classification. Its usage follows the scikit-learn API, namely a fit, predict_proba and predict methods to respectively fit, predict class probabilities and labels. The BinaryClassifier with default parameters is created using

from linlearn import BinaryClassifier

amf = AMFClassifier()