Learn Before
Concept

Macro-average Recall

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 total number of classes. This can be summarized by 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 2026-06-17

Tags

Data Science

Related