根据定义,精度为:
TP/(TP + FP)
那么,为什么scikit precision_score y_true和y_pred的大小相同很重要呢?
precision_score()
通过获取配对的y_true
和y_pred
来工作,并使用配对来确定所提供的测试样本中的哪些是真阳性和假阳性。
例
y_true y_pred
0 0 <- True negative
1 0 <- False negative
0 1 <- False positive
1 1 <- True positive