Learn Before
Explain the bias created when a team inspects only the validation errors.
Case context: A product team maintains a validation set of 2,400 labeled examples. Their classifier reaches 97.5% accuracy, so about 60 examples are predicted incorrectly. To speed up review, the team checks and fixes labels only for those 60 error cases and does not inspect the remaining 2,340 predictions.
Question: What bias does this create in the validation set, and what is the reason?
Sample answer: This approach creates label-correction bias. The examples that the model gets wrong are the only ones that receive a label audit, so any labeling mistakes among them are more likely to be found and repaired. The much larger group of correctly predicted examples is left alone, even though some of those labels could still be wrong. Because the review effort is driven by convenience and limited time, the corrections are applied unevenly instead of being distributed across the full set.
Key points:
- Only the 60 error cases are checked for label problems
- The 2,340 predicted-correct cases may still contain bad labels
- The review strategy is chosen for efficiency, not to sample the whole set fairly
- The result is uneven correction across the validation data, which introduces bias
Rubric: Full credit requires stating that only the mispredicted subset is reviewed and corrected, that the unreviewed correctly predicted subset may still have label mistakes, and that the unequal review pattern arises from practical convenience rather than a balanced auditing plan.
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 is the main reason error-checking can become biased when revising labels in a dev set?
Reviewing the Mistakes
Counting Misclassifications in a Development Set
Match Each Validation-Set Quantity to Its Meaning
Why fixing only the mistakes can distort a development set
Explain why label checks often get focused on the examples a model gets wrong.
Explain the bias created when a team inspects only the validation errors.
Why Focus on the Incorrect Dev Predictions?
What problem can arise when you review only the validation examples the system gets wrong?
True or False: The 1,120 examples that were classified correctly must all have perfectly accurate labels because they were not selected for review.