[科研] | 101级别解释 | Confusion matrix, Accuracy, Precision, Recall and F1 score

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

References:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值