Does thereshold of classifier close to 0 make sense?
I have roc curve with AUC of 0.91. I applied the following function to determine the best threshold: threshold1[np.argmin(np.abs(false_positive_rate1+true_positive_rate1-1))]
and I got 0.004. Does it make sense? it means that the change between the classes is very gentle, that there is not enough difference between them?
Topic auc roc accuracy machine-learning
Category Data Science