文章目录
Interpretation of Performance Measures
- Different assessment metrics of a classification algorithm for analysing purpose:
- Confusion Matrix
- Precision
- Recall
- Accuracy
- Area under ROC curve(AUC)
1. Confusion Matrix
- A table that summarises how successful the classification model is at predicting examples belonging to various classes.
- One axis is the label that the model predicted,
- The other axis is the actual label.
- An example:

2. Precision
- Precision is a metric that quantifies the number of correct positive predictions made.
- Precision for binary classification:
p r e c i s i o n = T P T P + F P precision = \frac{TP}{TP + FP} precision=TP+FPTP
3. Recall
- Recall is a metric that quantifies the number of correct positive predictions made out of all positive predictions that could have been made (which means that recall provides an indication of missed positive predictions).
- Recall for binary classification:
r e c a l l = T P T P + F N recall = \frac{TP}{TP+FN} recall=TP+FNTP
4. Accuracy
- Accuracy is a metric that quantifies how close a measurement is to the true or accepted value (which means accuracy takes into account correctly predicted negative predictions).
a c c u r a c y = T P + T N T P + F P + T N + F N accuracy = \frac{TP+TN}{TP+FP+TN+FN} accuracy=TP+FP+TN+FNTP+TN
5. Area under the ROC curve(AUC)
- It can only be used to assess classifiers that return some confidence score (or a probability) of prediction. For example, logistic regression, neural networks and decision trees (and ensemble models based on decision trees) can be assessed using ROC curves.
- ROC curve commonly use the combination of true positive rate(TPR) and false positive rate(FPR) and that is given as:
T P R = T P T P + F N TPR = \frac{TP}{TP+FN} TPR=TP+FNTP
F P R = F P F P + T N FPR = \frac{FP}{FP+TN} FPR=FP+TNFP - The higher the area under the ROC curve(AUC), the better the classifier.
- An example of the area and ROC curves.

F1 score
- F1 score is a weighted average of precision and recall.
F 1 s c o r e = 2 1 p r e c i s i o n + 1 r e c a l l = 2 × p r e c i s i o n × r e c a l l p r e c i s i o n + r e c a l l F1\;score = \frac{2}{\frac{1}{precision}+\frac{1}{recall}} = \frac{2\times precision\times recall}{precision+recall} F1score=precision1+recall12=precision+recall2×precision×recall
本文详细解释了评估分类算法性能的关键指标,包括混淆矩阵、精确度、召回率、准确性以及AUC。混淆矩阵概述了模型预测各类别的效果,精确度衡量正确预测的正例数量,召回率则关注所有可能的正例中被正确预测的比例。AUC是ROC曲线下的面积,用于评估返回概率得分的分类器。F1分数是精确度和召回率的加权平均值,综合考虑两者的表现。
2029

被折叠的 条评论
为什么被折叠?



