Python draws ROC curve and calculates AUC value (with code)

烟雨青岚
Release: 2020-06-19 14:06:57
forward
6877 people have browsed it

Python draws ROC curve and calculates AUC value (with code)

##Foreword

ROC (Receiver Operating Characteristic) Curve and AUC are often used to evaluate the quality of a binary classifier. This article will first briefly introduce ROC and AUC, and then use examples to demonstrate how to make ROC curves and calculate AUC in python.

AUC introduction

AUC (Area Under Curve) is a very commonly used evaluation indicator in machine learning binary classification models. Compared with F1-Score, it has greater tolerance for project imbalances. , currently common machine learning libraries (such as scikit-learn) generally integrate the calculation of this indicator, but sometimes the model is separate or written by yourself. In this case, if you want to evaluate the quality of the training model, you have to do it yourself. An AUC calculation module. When searching for information, this article found that libsvm-tools has a very easy-to-understand AUC calculation, so I picked it out for future use.

AUC calculation

The calculation of AUC is divided into the following three steps:

1. Preparation of calculation data, which is generally used if there is only a training set during model training. Calculated by cross-validation, if there is an evaluation set (evaluate), it can usually be calculated directly. The format of the data generally requires the predicted score and its target category (note that it is the target category, not the predicted category)

2. According to the threshold division, the horizontal (X: False Positive Rate) and vertical (Y: True Positive Rate) points are obtained
3. After connecting the coordinate points into a curve, calculate the area under the curve, which is the value of AUC

Go directly to the python code

#! -*- coding=utf-8 -*-import pylab as pl
from math import log,exp,sqrt
 
 
evaluate_result="you file path"db = [] #[score,nonclk,clk]pos, neg = 0, 0
with open(evaluate_result,'r') as fs: for line in fs:
 nonclk,clk,score = line.strip().split('\t')
 nonclk = int(nonclk)
 clk = int(clk)
 score = float(score)
 db.append([score,nonclk,clk])
 pos += clk
 neg += nonclk
  
  
 
db = sorted(db, key=lambda x:x[0], reverse=True)
 #计算ROC坐标点xy_arr = []tp, fp = 0., 0. 
for i in range(len(db)):
 tp += db[i][2]
 fp += db[i][1]
 xy_arr.append([fp/neg,tp/pos])
 #计算曲线下面积auc = 0. 
prev_x = 0for x,y in xy_arr: if x != prev_x:
 auc += (x - prev_x) * y
 prev_x = x
 
print "the auc is %s."%auc
 x = [_v[0] for _v in xy_arr]
y = [_v[1] for _v in xy_arr]
pl.title("ROC curve of %s (AUC = %.4f)" % ('svm',auc))
pl.xlabel("False Positive Rate")
pl.ylabel("True Positive Rate")
pl.plot(x, y)# use pylab to plot x and y
pl.show()# show the plot on the screen
Copy after login

The format is:

nonclk \t clk \t score
Copy after login
Among them:

1, nonclick: non-clicked data, which can be regarded as the number of negative samples
2 , clk: the number of clicks, which can be regarded as the number of positive samples
3, score: predicted score, using this score as a group to perform pre-statistics of positive and negative samples can reduce the amount of AUC calculation
The result of the operation is :

Python draws ROC curve and calculates AUC value (with code)

If pylab is not installed on this machine, you can directly annotate the dependencies and drawing parts


NoteThe code posted above:
1. Only the results of the two categories can be calculated (as for the labels of the two categories, you can handle them casually)
2. Each score in the above code has a threshold. In fact, this efficiency is quite low. You can sample the sample or Calculate equal parts when calculating the horizontal axis coordinates
Thank you very much for reading
When I was in college, I chose to learn Python by myself. When I started working, I found that I suffered from poor computer basics. There is nothing I can do if I don’t have good academic qualifications. I can make up for it the day after tomorrow, so I started my own counterattack outside of coding. I continued to learn the core knowledge of python and studied basic computer knowledge in depth. After sorting it out, I posted it on our WeChat public account "Programmer Academy". If you are not willing to be mediocre, then join me and continue to grow outside of coding!

In fact, there are not only technologies here, but also things other than technology. For example, how to be an exquisite programmer instead of a "diaosi". The programmer itself is a noble existence, isn't it? ? [Click to join] If you want to be yourself and become a noble person, come on!

Thank you everyone for reading, I hope you will benefit a lot.

##This article is reproduced from: https://blog.csdn.net/adrrry/article/details/106796288

Recommended tutorial: "

python tutorial

"

The above is the detailed content of Python draws ROC curve and calculates AUC value (with code). For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!