What is ROC?

2023. 3. 7. 16:17Machine Learning

this is how ROC curve look like and how to interpret

ROC stands for Receiver Operating Characteristic. It is a graphical representation that illustrates the performance of a binary classification model. The ROC curve plots the true positive rate (TPR) against the false positive rate (FPR) at various threshold settings.

 

The true positive rate (TPR) is also called sensitivity, recall or hit rate and it is the proportion of actual positive cases that are correctly identified as positive by the model. On the other hand, the false positive rate (FPR) is the proportion of actual negative cases that are incorrectly classified as positive by the model.

 

The ROC curve is generated by plotting the TPR against the FPR for different threshold values. The area under the ROC curve (AUC) is a measure of the performance of the classification model, with a value of 1 indicating perfect classification and a value of 0.5 indicating random guessing.

 

ROC curves are commonly used in fields such as machine learning, data mining, and signal processing to evaluate and compare the performance of different classification models.

'Machine Learning' 카테고리의 다른 글

What is PCA?  (0) 2023.03.07
Practice of MLP question  (0) 2023.03.07
What is trade-off between sensitivity (or TPR) and specificity (1-FPR)?  (0) 2023.03.07
What is Self-Organizing Map?  (0) 2023.03.06
Difference between K-means and LVQ  (0) 2023.03.06