Skip to content

Learner#

Most estimators have the ability to be trained with data. These estimators are called Learners and require training before they are can make predictions. Training is the process of feeding data to the learner so that it can form a generalized representation or model of the dataset.

Train a Learner#

To train a learner pass a training dataset as argument to the train() method:

public train(Dataset $training) : void

$estimator->train($dataset);

Note

Calling the train() method on an already trained learner will erase its previous training. If you would like to train a model incrementally, you can do so with learners implementing the Online interface.

Is the Learner Trained?#

Return whether or not the learner has been trained:

public trained() : bool

var_dump($estimator->trained());
bool(true)