Caesar AI Atlas
MetricsBeginner

Accuracy vs Recall

A side-by-side comparison of Accuracy and Recall. Understand how overall correctness differs from the ability to find actual positive cases, especially when missed positives are costly.

Quick Verdict: Use Accuracy when overall correctness is meaningful; use Recall when failing to identify actual positives creates material risk.

At a Glance

Accuracy

Accuracy measures classification metric equal to the proportion of predictions that are correct among all predictions made.

Key Characteristics
  • Measures the proportion of all predictions that are correct
  • Applies to classification evaluation
  • Can be useful when classes are balanced
Watch Out For
  • Can be misleading when classes are imbalanced
  • May hide poor performance on the positive class

Context: Most relevant when all classes and error types have similar importance and the dataset is not severely imbalanced.

VS
Recall

Recall measures evaluation metric that measures the proportion of actual positive or relevant items that a model successfully identifies.

Key Characteristics
  • Measures the proportion of actual positives identified
  • Focuses on missed positives
  • Important when false negatives are costly
Watch Out For
  • High recall may come with more false positives
  • Should often be interpreted alongside precision

Context: Most relevant for detection, screening, and safety-sensitive tasks where missing a positive case is costly.

Key Differences

AspectAccuracyRecall
What it measuresAccuracy measures correct predictions among all predictions.Recall measures identified positives among all actual positives.
Best use caseUseful when classes are balanced and errors have similar cost.Useful when missed positives are more costly than extra false alarms.
Failure modeCan look high even when a model misses many rare but important positives.Can look high even when many predicted positives are false positives.
Threshold sensitivityChanging a classification threshold can change accuracy by shifting the balance of correct and incorrect predictions.Changing a threshold often directly changes recall by making the model more or less willing to identify positives.
Common mistakeReporting accuracy alone for imbalanced or high-risk classification tasks.Maximizing recall without documenting the false-positive trade-off or operational burden.
Caesar AI Note

In practice, accuracy is the metric most likely to look reassuring while hiding the problem; recall forces teams to ask what the model fails to catch.

Notes

Common Mistakes

1

Treating high accuracy as proof that a classifier is safe for rare-event detection.

2

Reporting recall without precision, false positives, or threshold assumptions.

3

Choosing metrics before defining which error type is more harmful.

When to Use Each

accuracy

Use Accuracy when you need a simple measure of total correct classifications and the class distribution makes that number meaningful. It should not be the only metric when positive cases are rare or error costs differ.

recall

Use Recall when the evaluation question is how many actual positive or relevant items the model successfully finds. It is especially important in screening, safety, fraud, compliance, and other settings where missed positives are costly.

Compliance Note

Metric selection affects validation reports, assurance evidence, and performance claims under AI governance programs. NIST AI RMF and ISO 42001-style controls should document why a chosen metric matches the risk of the use case.

FAQ

Can a model have high accuracy and low recall?+

Yes. If positive cases are rare, a model can correctly classify many negative cases and still miss many actual positives.

Is recall always better than accuracy?+

No. Recall is better when missed positives are especially important, while accuracy can be useful when overall correctness is meaningful and class balance is reasonable.

Should compliance reports include both metrics?+

Often yes. Reports should explain why each metric is relevant, what error trade-offs exist, and how the metric supports the risk assessment.

Recently Viewed

No recently viewed comparisons yet.