Skip to content

[source]

One Vs Rest#

One Vs Rest is an ensemble learner that trains a binary classifier to predict a particular class vs every other class for every possible class. The final class prediction is the class whose binary classifier returned the highest probability. One of the features of One Vs Rest is that it allows you to build a multiclass classifier out of an ensemble of otherwise binary classifiers.

Interfaces: Estimator, Learner, Probabilistic, Parallel, Persistable

Data Type Compatibility: Depends on the base learner

Parameters#

# Name Default Type Description
1 base Learner Probabilistic

Example#

use Rubix\ML\Classifiers\OneVsRest;
use Rubix\ML\Classifiers\LogisticRegression;
use Rubix\ML\NeuralNet\Optimizers\Stochastic;

$estimator = new OneVsRest(new LogisticRegression(64, new Stochastic(0.001)));

Additional Methods#

This estimator does not have any additional methods.