BPt.EvalResults.preds#

property EvalResults.preds#

If the parameter store_preds is set to True when calling evaluate(), then this parameter will store the predictions from every evaluate fold.

The parameter preds is a dictionary, where raw predictions made can be accessed by the key ‘predict’. Values are stored as list corresponding to each evaluation fold.

In the case where other predict-like functions are available, e.g., in the case of a binary problem, where it may be desirable to see the predicted probability, then the those predictions will be made available under the name of the underlying predict function. In this case, that is self.preds[‘predict_proba’]. It will also store results from ‘predict’ as well.

self.preds also will store under ‘y_true’ a list, where each element of the list corresponds to the corresponding true target values for the predictions made.