capability__predict_proba#
- capability__predict_proba()[source]#
Capability: the estimator can make probabilistic predictions.
String name:
"capability:predict_proba"Public capability tag
Values: boolean,
True/FalseExample:
TrueDefault:
False
This tag applies to classifiers and clusterers.
If the tag is
True, the estimator implements a non-defaultpredict_probamethod, which can be used to predict class probabilities (classifier), or probabilistic cluster assignments (clusterer)If the tag is
False, the estimator’spredict_probadefaults to predicting zero/one probabilities, equivalent to thepredictoutput.