午夜剧场伦理_日本一道高清_国产又黄又硬_91黄色网战_女同久久另类69精品国产_妹妹的朋友在线

您的位置:首頁技術文章
文章詳情頁

利用python畫出AUC曲線的實例

瀏覽:25日期:2022-08-05 11:41:00

以load_breast_cancer數據集為例,模型細節不重要,重點是畫AUC的代碼。

直接上代碼:

from sklearn.datasets import load_breast_cancerfrom sklearn import metricsfrom sklearn.ensemble import RandomForestClassifierfrom sklearn.model_selection import train_test_splitimport pylab as pltimport warnings;warnings.filterwarnings(’ignore’)dataset = load_breast_cancer()data = dataset.datatarget = dataset.targetX_train,X_test,y_train,y_test = train_test_split(data,target,test_size=0.2)rf = RandomForestClassifier(n_estimators=5)rf.fit(X_train,y_train)pred = rf.predict_proba(X_test)[:,1]#############畫圖部分fpr, tpr, threshold = metrics.roc_curve(y_test, pred)roc_auc = metrics.auc(fpr, tpr)plt.figure(figsize=(6,6))plt.title(’Validation ROC’)plt.plot(fpr, tpr, ’b’, label = ’Val AUC = %0.3f’ % roc_auc)plt.legend(loc = ’lower right’)plt.plot([0, 1], [0, 1],’r--’)plt.xlim([0, 1])plt.ylim([0, 1])plt.ylabel(’True Positive Rate’)plt.xlabel(’False Positive Rate’)plt.show()

利用python畫出AUC曲線的實例

補充拓展:Python機器學習中的roc_auc曲線繪制

廢話不多說,直接上代碼

from sklearn.metrics import roc_curve,aucfrom sklearn.ensemble import RandomForestClassifierimport matplotlib.pyplot as pltfrom sklearn.model_selection import train_test_splitx_train,y_train,x_test,y_test=train_test_split(x,y,test_size=0.2)rf=RandomForestClassifier()rf.fit(x_train,y_train)rf.score(x_train,y_train)print(’trainscore:’+str(rfbest.score(x_train,y_train)))print(’testscore:’+str(rfbest.score(x_test,y_test)))y_score=rfbest.fit(x_train,y_train).predict_proba(x_test) #descision_function()不可用print(type(y_score))fpr,tpr,threshold=roc_curve(y_test,y_score[:, 1])roc_auc=auc(fpr,tpr)plt.figure(figsize=(10,10))plt.plot(fpr, tpr, color=’darkorange’,lw=2, label=’ROC curve (area = %0.2f)’ % roc_auc) ###假正率為橫坐標,真正率為縱坐標做曲線plt.plot([0, 1], [0, 1], color=’navy’, lw=2, 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.show()

以上這篇利用python畫出AUC曲線的實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: Python 編程
相關文章:
主站蜘蛛池模板: 天天拍天天干 | 欧美精品日韩少妇 | 综合色在线 | 最新国产精品视频 | 中文字幕高清 | 国产少妇在线观看 | 免费91| 三上悠亚 在线观看 | 伊人22综合| 婷婷天堂网| 国产探花一区二区 | 在线免费 | 成人黄色免费网 | 91一区二区 | 精品国产一区二区三区在线观看 | 在线观看精品一区 | 午夜久久网 | 天天操免费视频 | 在线小视频你懂的 | 亚洲欧美另类色图 | 中国美女黄色一级片 | 亚洲精品视| 国产不卡视频在线观看 | 国产精品99久久久久久www | 亚洲天堂男人天堂 | 国产福利视频在线观看 | 人人澡人人添 | 国产一区导航 | 97国产成人 | 6080成人| 一本到av| 亚洲国产高清视频 | av 一区二区三区 | 欧美日韩亚洲在线观看 | 北条麻妃一区二区三区 | 午夜资源网 | 国产成人在线免费观看 | 国产探花在线播放 | 日本全黄裸体片 | 久久久www成人免费毛片 | 亚洲天堂精品在线观看 |