When Manual Review Improves Faster Than a Hidden Evaluation Set
Case context: Your team is building a system that turns recorded meetings into written summaries. You divide the development data into two parts: a Review dev set that the team inspects by hand to understand mistakes, and a Shield dev set that is used only for evaluation. After two weeks of tuning preprocessing choices and model settings based on the manual review, the error rate on the Review dev set falls from 12% to 4%, while the Shield dev set error rate falls only from 12% to 11%.
Question: What does this pattern suggest about the Review dev set, and what next step should the team consider?
Sample answer: This pattern suggests that the Review dev set has been overfit through repeated manual analysis. The much larger improvement on the Review set than on the Shield set shows that the team has started optimizing too closely to the inspected data. A reasonable next step is to collect more data for the Review dev set or otherwise refresh it so it better represents the problem being evaluated.
Key points:
- Identify that the Review dev set has likely been overfit.
- Note that the main clue is the large gap between improvement on the Review set and improvement on the Shield set.
- Recommend getting more data for the Review dev set as a possible fix.
Rubric: The response must correctly diagnose overfitting to the Review dev set using the contrast between the two error-rate changes, and it must suggest acquiring more Review dev set data or an equivalent remedy to reduce the mismatch.
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
Overfitting a development set used for model tuning
What most clearly indicates that a manually inspected dev slice has been over-tuned during error analysis?
Inspecting a manually reviewed validation set can make you adapt to that set more quickly than if you never looked at its examples.
Keeping a Reviewed Subset Separate from a Hidden Check Set
Match each validation-set concept to its description in a reviewed-vs-reserved split.
Order the steps for checking whether repeated manual review is causing overfitting to a reviewed validation subset.
What is the most likely conclusion when manual review keeps pushing one dev set score far above another?
In the Eyeball/Blackbox approach, the Blackbox dev set is checked manually during routine error analysis.
If the Eyeball dev set improves much faster than the Blackbox dev set, you have _____ the Eyeball dev set.
Match each performance pattern with the most appropriate interpretation when comparing a hand-reviewed set with a separate hidden set.
Order the steps for checking whether a manually reviewed dev set has been overfit.
Detect Overfitting to an Inspected Development Set
When Manual Review Improves Faster Than a Hidden Evaluation Set
Why split the validation set into reviewed and unreviewed parts?