Hi @Witcho
The test results appears to be predicted class labels for each input record. It seems that the model may not provide probability estimates (predict_proba
) but rather directly assigns final predicted classes (e.g., "yes" or "no"). This behavior could stem from specific implementation choices or model configurations.
To address this, it's advisable to review the model's setup to understand why it returns class labels instead of probabilities. If probability estimates are necessary, adjustments to the model configuration or post-processing of predictions might be required. Alternatively, retraining the model with a configuration that outputs probabilities could be considered. I hope you understand. Thank you.