SklearnPredictMethod¶
SklearnPredictMethod
¶
Prediction method selection for scikit-learn models.
Attributes:
Name | Type | Description |
---|---|---|
AUTO |
auto
|
Automatically selects predict_proba if available, otherwise predict. |
PREDICT |
auto
|
Uses the predict method (returns class labels or regression values). |
PREDICT_PROBA |
auto
|
Uses the predict_proba method (returns probability estimates). |