TabularPredictor.get_oof_pred#

TabularPredictor.get_oof_pred(model: Optional[str] = None, transformed=False, train_data=None, internal_oof=False, decision_threshold=None, can_infer=None) Series[source]#

Note: This is advanced functionality not intended for normal usage.

Returns the out-of-fold (OOF) predictions for every row in the training data.

For more information, refer to get_oof_pred_proba() documentation.

Parameters
  • model (str (optional)) – Refer to get_oof_pred_proba() documentation.

  • transformed (bool, default = False) – Refer to get_oof_pred_proba() documentation.

  • train_data (pd.DataFrame, default = None) – Refer to get_oof_pred_proba() documentation.

  • internal_oof (bool, default = False) – Refer to get_oof_pred_proba() documentation.

  • decision_threshold (float, default = None) – Refer to predict_multi documentation.

  • can_infer (bool, default = None) – Refer to get_oof_pred_proba() documentation.

Return type

pd.Series object of the out-of-fold training predictions of the model.