Why Reviewing Only the Flagged Errors Can Miss Label Problems
Case context: You are training a handwritten-digit classifier. Your development set contains 800 labeled images, and the model gets 32 of them wrong. A teammate suggests checking only those 32 wrong predictions to find any bad labels and then leaving the 768 correct predictions alone.
Question: What is the weakness in that plan, and what kind of labeling mistake could still go unnoticed if you follow it?
Sample answer: The weakness is that it ignores the examples the model predicted correctly, and those can still contain bad labels. If an example has the wrong ground-truth label and the model also predicts that same wrong class, the case looks correct even though both the label and the prediction are wrong.
Key points:
- The plan overlooks correctly classified examples.
- A wrong label can hide inside a correct prediction.
- A matching wrong label and wrong prediction can appear to be a true success.
Rubric: The response must explain that only checking the wrong predictions misses some label errors among the correctly classified examples. It must also state that the hidden error is when both the label and the model prediction are wrong in the same way.
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
Bias from Correcting Only the Mistakes
Which examples should be reviewed to improve dev-set label quality?
A single development example can have both an incorrect target label and an incorrect model prediction.
Review Both Error Cases and Correct Cases
Match each label-audit situation to the correct description.
Order the steps for a dev-set label audit.
Why can a dev example appear to be labeled correctly even when the label is wrong?
To assess label quality, it is enough to inspect only the examples your model got wrong.
Reviewing Labels on Development Examples
Match each label-review category to its role in checking data quality.
Why Correct Predictions Still Need Label Review
Why checking only mistakes can miss label problems
Why Reviewing Only the Flagged Errors Can Miss Label Problems
Why Recheck Apparently Correct Labels