注:本文是人工智能研究網的學習筆記學習
最好的預測模型在左上角,表明100%的靈敏度和0%的虛警率,被稱爲完美分類器。人工智能
一個隨機猜想模型。會給出從左下角到右上角的沿着對角線的點(對角線被稱做line of no-discrimation)。3d
對角線上的的點表明了好的分配結果,對角線如下的點表明很差的分配結果,可是能夠經過翻轉變成好的分類器。code
當曲線差很少時,求面積, 新的研究表名,AUC曲線存在一些問題。blog
metrics.roc_curve(y_true, y_score, pos_label=None, sample_weight=None, drop_intermediate=True)
參數:get
返回值:io
from sklearn.metrics import roc_curve,roc_auc_score y = np.array([1,1,2,2]) scores = np.array([0.1, 0.4, 0.35, 0.8]) fpr, tpr, thresholds = roc_curve(y, scores, pos_label=2) print(fpr) print(tpr) print(thresholds)