Learn Before
Concept

Micro-Average Precision

We can compute micro-average precision by dividing the number of true positives across all classes by the sum of true positives and false positives across all classes.

More formally, let TPiTP_i and FPiFP_i be the number of true positives and false positives, respectively, in class ii. Given a multi-class classification with nn classes, we can express micro-average precision as the following formula:

micro-average precision = (i=1nTPi)/(i=1n(TPi+FPi))(\sum_{i=1}^nTP_i) / (\sum_{i=1}^n(TP_i+FP_i ))

0

1

Updated 2021-01-29

Tags

Data Science

Related