What is the mAP metric and how is it calculated?

前端 未结 6 764
臣服心动
臣服心动 2020-12-12 09:07

In computer vision and object detection, the common evaluation method is mAP. What is it and how is it calculated?

6条回答
  •  無奈伤痛
    2020-12-12 10:13

    mAP is Mean Average Precision.

    Its use is different in the field of Information Retrieval (Reference [1] [2] )and Multi-Class classification (Object Detection) settings.

    To calculate it for Object Detection, you calculate the average precision for each class in your data based on your model predictions. Average precision is related to the area under the precision-recall curve for a class. Then Taking the mean of these average individual-class-precision gives you the Mean Average Precision.

    To calculate Average Precision, see [3]

提交回复
热议问题