[二分类]PR曲线
PR曲线是另一种衡量算法性能的评价标准,其使用精确度(Precision, Y轴)和召回率(Recall, X轴)作为坐标系的基底
本文着重于二分类的PR曲线
参考一个例子:
Suppose a computer program for recognizing dogs in photographs identifies 8 dogs in a picture containing 12 dogs and some cats. Of the 8 identified as dogs, 5 actually are dogs (true positives), while the rest are cats (false positives). The program's precision is 5/8 while its recall is 5/12.
