Recall
In the context of AI and machine learning, recall measures how well a model finds the items it is supposed to find. It answers the question: of all the cases that were actually positive, what fraction did the model correctly identify? A high recall means the model misses few of the relevant cases, though it does not indicate how many of its positive predictions were wrong.
Recall is a classification performance metric commonly defined as the proportion of actual positive instances that a model correctly classifies as positive, typically expressed as true positives divided by the sum of true positives and false negatives. It is frequently reported alongside precision, since the two capture different error types and often trade off against one another; recall alone does not account for false positives. Note: the evidence packet provided describes 'recall' only in unrelated senses (product/vehicle safety recalls and the psychological process of memory retrieval) and contains no source defining recall as a machine learning evaluation metric. This entry therefore reflects the term as commonly used in model evaluation, but the supplied evidence does not substantiate it; the definition should be treated as unsourced pending appropriate references.
Why it matters
Recall is central to evaluating AI systems in settings where failing to catch a positive case carries serious consequences. In domains such as fraud detection, medical screening, or anti-money-laundering monitoring, a missed positive (a false negative) can be far costlier than a false alarm. Recall quantifies exactly this exposure: it tells you the fraction of genuinely relevant cases the model actually surfaced. For model risk managers and compliance officers, tracking recall helps make the cost of missed detections visible and auditable rather than buried in an aggregate accuracy figure.
Who it's relevant to
Inside Recall
Common questions
Answers to the questions practitioners most commonly ask about Recall.