Equal Error Rate in Python

后端 未结 5 1782
离开以前
离开以前 2021-02-04 09:50

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

5条回答
  •  旧巷少年郎
    2021-02-04 10:35

    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.

提交回复
热议问题