mean average precision 定义以及计算

mean average precision 即对所有类的average precision的平均,一个类的averege precision计算有两种,

一种是11点插值法,voc 08年以前用。11-points interpolated average precision as defined by TREC. This is the average of the maximum precision for recall levels greather than 0.0, 0.1, 0.2, ..., 1.0. This measure was used in the PASCAL VOC challenge up to the 2008 edition.

一种是Average precision as defined by TREC. This is the average of the precision observed each time a new positive sample is recalled。计算方法是找到recall变化时(TP被recall时)的点,求这些点对应的precision的均值。下面是两种计算AP的计算script



# fp和tp是Nsamples*1的0/1array,比如fp表示测试样本是否在false positive,是则为1。
fp = np.cumsum(fp)
tp = np.cumsum(tp)
rec = tp / float(npos)
prec = tp / (tp + fp)
ap = voc_ap(rec, prec, use_07_metric)


def voc_ap(rec, prec, use_07_metric=False):
    """ ap = voc_ap(rec, prec, [use_07_metric])     Compute VOC AP given precision and recall.     If use_07_metric is true, uses the     VOC 07 11 point method (default:False).     """     if use_07_metric:
        # 11 point metric        ap = 0.        for t in np.arange(0., 1.1, 0.1):
            if np.sum(rec >= t) == 0:
                p = 0            else:
                p = np.max(prec[rec >= t])
            ap = ap + p / 11.    else:
        # correct AP calculation        # first append sentinel values at the end        mrec = np.concatenate(([0.], rec, [1.]))
        mpre = np.concatenate(([0.], prec, [0.]))

        # compute the precision envelope        for i in range(mpre.size - 1, 0, -1):
            mpre[i - 1] = np.maximum(mpre[i - 1], mpre[i])

        # to calculate area under PR curve, look for points        # where X axis (recall) changes value        i = np.where(mrec[1:] != mrec[:-1])[0]

        # and sum (\Delta recall) * prec        ap = np.sum((mrec[i + 1] - mrec[i]) * mpre[i + 1])
    return ap
  • 3
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值