Could anybody tell me how could I compute Equal Error Rate(EER) from ROC Curve in python? In scikit-learn there is method to compute roc curve and auc but could not find the met
The EER is defined as FPR = 1 - PTR = FNR. This is wrong.
Since FPR= 1-TNR (True Negative Rate) and therefore, not equal to FNR.