Recall Calculator

Recall answers "of all the positive cases that existed, how many did the model catch?" It is TP ÷ (TP + FN) and is the metric to watch when missing a positive is costly — cancer screening, security alerts, churn detection. Recall and sensitivity are the same formula under different names.

Correctly predicted positives.

Predicted positive but actually negative.

Predicted negative but actually positive.

Correctly predicted negatives.

Result

Enter your values and press Calculate — the result appears here.

Worked examples

50 caught out of 55 actual positives

  • tp = 50
  • fp = 10
  • fn = 5
  • tn = 35

Result: Recall 0.9091 · False negative rate 0.0909

Every positive found

  • tp = 40
  • fp = 5
  • fn = 0
  • tn = 55

Result: Recall 1.00

Frequently asked questions

What does recall tell me?

Recall is the coverage of the positive class: of the cases that truly were positive, the fraction the model identified. High recall means few positives slipped through unnoticed.

When is recall the right metric?

When a missed positive is the worst outcome — a tumor the scan fails to flag, a fraud transaction that goes through, a failing student the system does not catch. There you accept more false alarms to raise recall.

Is recall the same as sensitivity?

Yes. Sensitivity, recall, and the true positive rate all compute TP ÷ (TP + FN). Different fields prefer different names: medicine says sensitivity, information retrieval says recall.

💬 Discuss on BestWordz Community

Join the conversation about Machine Learning, recall, recall calculator on the BestWordz Community forum.

Visit Forum →
Copied!