Artificial IntelligenceEvaluation & Metrics

Recall

Overview

Direct Answer

Recall is the ratio of correctly identified positive instances to all actual positive instances in a dataset, expressed as TP/(TP+FN) where TP is true positives and FN is false negatives. It measures the model's ability to find all relevant cases, capturing what proportion of actual positives were successfully detected.

How It Works

The metric operates by comparing predicted classifications against ground truth labels. When a model encounters positive instances, recall quantifies how many it successfully identifies before accounting for those it missed entirely. High recall indicates few false negatives—instances the model failed to flag despite being positive—whilst low recall signals the model overlooked many true positives in favour of conservative predictions.

Why It Matters

Organisations prioritise this metric in contexts where missing positive cases carries significant costs or risk. Medical diagnostics, fraud detection, and safety-critical systems demand high recall to minimise missed diagnoses, undetected fraud, or overlooked hazards. The metric directly influences operational decisions around model deployment thresholds and acceptable error rates.

Common Applications

Cancer screening programmes use recall-focused models to minimise undetected cases. Financial institutions employ it in credit card fraud detection. Content moderation systems optimise for high recall to catch policy violations before publication, whilst cybersecurity threat detection relies on it to identify malicious activities.

Key Considerations

Optimising solely for recall typically increases false positives, requiring careful balance with precision. Different applications tolerate this tradeoff differently; medical screening accepts higher false positive rates, whilst spam filtering may not. Threshold adjustment and domain-specific cost matrices are essential for calibrating appropriate recall targets.

Cited Across coldai.org3 pages mention Recall

Referenced By3 terms mention Recall

Other entries in the wiki whose definition references Recall — useful for understanding how this concept connects across Artificial Intelligence and adjacent domains.

More in Artificial Intelligence