简介
参考文档: 准确率(accuracy)、精确率(precision)、召回率(recall)_小胖蹄儿的博客-CSDN博客_准召率
- True Positive(真正, TP):将正类预测为正类数
- True Negative(真负 , TN):将负类预测为负类数
- False Positive(假正, FP):将负类预测为正类数
- False Negative(假负 , FN):将正类预测为负类数
表头 | Positive | Negative |
---|---|---|
True | TP | FP |
False | FN | TN |
计算公式
一般的计算范式如下
- 准确率 $$Acc = \frac{TP+TN}{TP+FP+FN+TN}$$
- 精准率 $$Pre = \frac{TP}{TP+FP}$$
- 召回率 $$Recall = \frac{TP}{TP+FN}$$