Learn Before
Concept

Macro-average Recall

Recall (haha pun) that the formula for recall is R=TP/(TP+FN)R = TP / (TP + FN). To compute the macro-average recall of a multi-class classification, compute RR for each class, add them together, and then divide by the number of classes. We can summarize this as the following formula:

macro-average recall = (i=1nRi)/n(\sum_{i=1}^nR_i) / n, where RiR_i is the recall of the iith class and there are nn classes.

0

1

Updated 2020-10-04

Tags

Data Science

Related