Learn Before
Interpreting a Wide Train-Validation Gap
Case context: A spam filter is being evaluated on a problem where the practical error floor is estimated to be about 9%. The model’s error on the training set is 9.3%, while its error on the validation set is 22%.
Question: What does this pattern suggest about the model’s bias and variance, and which source of error has the most room for improvement?
Sample answer: The training-set error is very close to the estimated error floor, so the model does not appear to have much bias left to remove. The much larger validation error shows that performance drops sharply on new data, which is a sign of high variance. Therefore, the main opportunity for improvement is variance reduction, for example by collecting more training examples or using stronger regularization.
Key points:
- Training performance near the error floor suggests low bias.
- A large gap between training and validation performance suggests high variance.
- Bias has little room for further improvement.
- Variance has substantial room for improvement.
Rubric: The learner must identify low bias with little room to improve it, and high variance with substantial room to improve it.
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 learning-curve pattern usually indicates high variance?
When a model's training error is already near the best attainable error, there is usually still a large amount of bias reduction left.
Adding _____ to Improve Generalization
Match each learning-curve idea to its meaning.
Diagnosing a High-Variance Learning Curve
Reading Bias and Variance from Error Rates
Interpreting a Wide Train-Validation Gap
Why Overfitting Leaves More Room for Variance Reduction
What is the most likely effect of adding more training examples in a high-variance setting?
A Model Can Fit Training Data Well Yet Still Perform Poorly on New Data