gpt4 book ai didi

python - Scikit - 如何定义绘制 roc 曲线的阈值

转载 作者:太空宇宙 更新时间:2023-11-04 04:49:38 27 4
gpt4 key购买 nike

我有一个增强树模型以及测试数据集的概率和分类。我正在尝试绘制相同的 roc_curve。但我无法弄清楚如何在 scikit 学习中为 roc 曲线定义阈值/alpha。

from sklearn.metrics import precision_recall_curve,roc_curve,auc, average_precision_score

fpr = dict()
tpr = dict()
roc_auc = dict()

fpr,tpr,_ = roc_curve(ytest,p_test, pos_label=1)
roc_auc = auc(fpr,tpr)

plt.figure()
lw = 2
plt.plot(fpr, tpr, color='darkorange', lw=lw, label='ROC curve (area = %0.2f)' % roc_auc)
plt.plot([0, 1], [0, 1], color='navy', lw=lw, linestyle='--')
plt.xlim([0.0, 1.0])
plt.ylim([0.0, 1.05])
plt.xlabel('False Positive Rate')
plt.ylabel('True Positive Rate')
plt.title('Receiver operating characteristic example')
plt.legend(loc="lower right")

plt.savefig('ROCProb.png')
plt.show()

我在这里看了一个类似的问题:thresholds in roc_curve in scikit learn

但是想不通。我也愿意使用其他一些库。

最佳答案

fprtpr 中的每个值都是针对特定阈值计算的,这些阈值的值在第三个输出 roc_curve 中返回(在您的情况下为变量 _)

举个例子

import numpy as np
from sklearn import metrics
y_true = np.array([1, 1, 2, 2])
y_scores = np.array([0.1, 0.4, 0.35, 0.8])
fpr, tpr, thresholds = metrics.roc_curve(y_true, y_scores, pos_label=2)

将要演示的数据制表

   Threshold  FPR  TPR
0 0.80 0.0 0.5
1 0.40 0.5 0.5
2 0.35 0.5 1.0
3 0.10 1.0 1.0

上面第一行显示对于阈值 .8,fpr 为 0,tpr 为 .5,依此类推

关于python - Scikit - 如何定义绘制 roc 曲线的阈值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48657329/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com