Learn Before
Estimate recall for a fox-image detector
Scenario: A wildlife lab checks an image model that is supposed to flag photos containing foxes. In the validation set, 150 images really do show a fox. The model marks 90 of those as foxes and fails to identify the other 60.
Prompt: What recall does this model achieve for fox images, and what does that number mean in practical terms?
Sample answer: Recall is the number of true fox images that are correctly identified divided by the total number of true fox images. Here, that is 90 out of 150, which equals 0.60, or 60%.
This means the model detects 60% of the fox photos and misses 40% of the ones that actually contain a fox. If the team wants to find as many fox images as possible, this recall is not very strong.
Key points:
- Recall = correctly identified fox images / all actual fox images
- 90/150 = 60% recall
- 40% of the real fox images were missed
- Low recall means many true positives are not being caught
0
1
Tags
Machine Learning
Deep Learning
Supervised Learning
Dive into Deep Learning @ D2L
Data Science
Machine Learning Strategy
Machine Learning Yearning @ DeepLearning.AI
Related
What does the recall of a cat detector measure?
True or False: Recall is the fraction of positive predictions that turn out to be correct.
Recall in a binary classification task
Match each term to its meaning in a wildfire-detection recall example.
Order the steps to compute recall for a fox classifier on the test set.
Why Recall Does Not Fully Describe a Bird Detector
Estimate recall for a fox-image detector
Define recall for a bird classifier in one or two sentences.
Which examples are used to compute recall?
True or False: If a spam filter misses many spam emails, its recall will be lower.