Learn Before
Concept

Micro-Average Recall

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

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

micro-average recall = (i=1nTPi)/(i=1n(TPi+FNi))(\sum_{i=1}^nTP_i) / (\sum_{i=1}^n(TP_i+FN_i ))

0

1

Updated 2020-10-05

Tags

Data Science

Related