Learn Before
Fixing poor training-set performance in a model
Case context: A small product team is evaluating a classifier that still makes many mistakes on the data it was trained on. A review of the errors shows that many of the failures occur on examples with a rare but repeated pattern: records from older devices with noisy measurements. The team is deciding between enlarging the model, adding a new input feature, lowering regularization, changing the network design, or collecting more labeled examples.
Question: What is the most likely diagnosis, which interventions are appropriate, and which proposed intervention is not the right way to address the diagnosed issue?
Sample answer: The model is showing high avoidable bias. Reasonable responses include using a larger model so it can fit the training set better, adding a feature that captures the older-device/noisy-measurement pattern identified in error analysis, reducing regularization if necessary while accepting that variance may rise, or revising the architecture to better match the task. Collecting more training data should not be treated as the main fix for this problem, because more data mainly helps when variance is the issue and usually does little to reduce bias.
Key points:
- Weak performance on the training set points to high avoidable bias.
- Increasing model capacity is a valid remedy.
- Error analysis can justify feature changes targeted at the recurring failure pattern.
- Lowering regularization may improve fit but can raise variance.
- Changing the architecture can help reduce bias and may also affect variance.
- More labeled data is not the primary solution for high bias.
Rubric: The response should diagnose high avoidable bias, name the four supported intervention categories, connect feature changes to the recurring error pattern, note the variance tradeoff of reducing regularization, and explain why more data is not the main fix for bias.
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
Using Error Review to Guide Feature Design
Using Less Regularization to Ease Underfitting
Which change is most likely to reduce avoidable bias when a model is underfitting?
More training data and avoidable bias
A way to lower avoidable bias is to reduce or eliminate ____.
Match each action with its main effect or purpose.
Order the response to weak training-set performance.
How can four bias-reduction tactics help when a model underfits?
Fixing poor training-set performance in a model
Why can weakening regularization help a model that is underfitting?
Which choice best applies error analysis to reduce avoidable bias?
Changing a model’s architecture can affect both bias and variance.