Learn Before
Explain what happens if a team cleans labels only in the validation set and leaves the test set unchanged.
Question: A team is building a loan-fraud detector. They manually inspect and fix mislabeled examples in the validation set, but they leave the test set labels untouched. Explain the consequences for model selection and final evaluation.
Sample answer: Cleaning only the validation set changes the standard used to judge models during development, while the test set still uses the old labels. As a result, the validation set and test set no longer measure the same thing. The team will tune the model to do well on the cleaned validation set, but the final score will come from the untouched test set. That mismatch can make a model look strong during development even though it does not achieve the same result on final evaluation.
Key points:
- Cleaning only the validation set makes the validation and test sets inconsistent.
- The team optimizes model choices using the cleaned validation set.
- Final performance is judged with the unchanged test set.
- Because the criteria differ, validation improvement may not carry over to test performance.
Rubric: The answer must state that fixing labels only in the validation set creates a mismatch between validation and test evaluation. It must also explain that model selection is then guided by one criterion while final test scoring uses another.
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
Why should the same label-cleaning procedure be used for both the dev set and the test set?
Validation and Test Labels Must Be Handled Consistently
Any label-fixing rule you use for the development set should also be applied to the _____ labels.
Match each relabeling situation to its effect on dev and test evaluation.
Order the steps for correcting label mistakes while keeping evaluation sets aligned.
What is the main problem if the dev set and test set are labeled using different rules?
It is fine to use one procedure to clean labels for the validation set and a different procedure for the test set if both look accurate overall.
Aligning validation and test label fixes helps prevent the team from optimizing for one score and then being judged by a _____ scoring rule.
Match each label-cleaning concept to its definition.
Order the steps that create misleading evaluation when only validation labels are corrected.
Explain what happens if a team cleans labels only in the validation set and leaves the test set unchanged.
Explain the evaluation mismatch when only one dataset receives label cleanup.
Why keep label corrections aligned across development and test data?