Calculating AUC for one threshold in the continuous output is simple:
AUC = (TPR - FPR + 1) / 2;
What if I want to calculate AUC for multiple thresholds in continuous output of the classifier?
Calculating AUC for one threshold in the continuous output is simple:
AUC = (TPR - FPR + 1) / 2;
What if I want to calculate AUC for multiple thresholds in continuous output of the classifier?