M

Mean Average Precision

MAP

Mean Average Precision (MAP) measures the accuracy of ranked retrieval results in information retrieval systems.

Mean Average Precision (MAP) is a widely used metric in the field of information retrieval and machine learning, particularly for evaluating the performance of systems that return ranked lists of items, such as search engines or recommendation systems. MAP combines the concepts of precision and recall to provide a single score that reflects the quality of a ranked list.

The calculation of MAP involves several steps. First, for each query, the precision at each relevant item is computed. Precision is defined as the number of true positive results divided by the total number of items retrieved up to that point. Next, the average precision for each query is determined by averaging the precision values at the ranks where relevant documents are retrieved. Finally, MAP is the mean of these average precision scores across all queries.

MAP is particularly useful because it accounts for the order of results. It rewards systems that return relevant items higher in the ranking list, thereby encouraging better retrieval practices. This makes it a favored choice for evaluating tasks like image retrieval, document retrieval, and other applications where the ranking of results is crucial.

In summary, Mean Average Precision provides a comprehensive measure that balances the trade-off between precision and recall in ranked retrieval tasks, helping developers and researchers assess the effectiveness of their models in real-world applications.

Ctrl + /