datatable.models.Ftrl.predict()

Make predictions for a dataset.

Parameters

X
Frame

A frame to make predictions for. It should have the same number of columns as the training frame.

return
Frame

A new frame of shape (X.nrows, nlabels) with the predicted probabilities for each row of frame X and each of nlabels labels the model was trained for.

See also

  • fit() – train model on a dataset.

  • reset() – reset the model.