recall

In pattern recognition, information retrieval, and binary classification, recall, also known as sensitivity, is the ratio of true positives, or correctly identified class members, to the total number actual positive samples or actual class members. Consider the following table:

Result
Negative Positive
Actual Negative TN FP
Positive FN TP
TN (True Negative)  ≡  # of actual negative results identified correctly as negative
FN (False Negative) ≡  # of actual positive results mis-identified as negative (Type 2 errors)
FP (False Positive)  ≡  # of actual negative results identified mis-identified as positive (Type 1 errors)
TP (True Positive)  ≡  # of actual positive results identified correctly as positive

The recall  is the number of true positive results divided by the number of all actual positive samples:

recall = \dfrac{TP}{TP + FN}

« Back to Glossary Index