Learn Before
Prefer regularization when model cost is acceptable
Case context: A text classifier is overfitting badly. The engineers think about reducing the network width, but the model will still run easily within the available compute budget.
Question: What should the team do instead, and what tradeoff should they keep in mind?
Sample answer: They should try regularization rather than making the model smaller. Cutting model size can sometimes help with variance, but regularization is usually the better first choice when compute is not a limit. They should also remember that stronger regularization can raise bias.
Key points:
- Recommend regularization.
- Do not rely on shrinking the model as the main fix.
- Compute is not the limiting factor.
- Regularization is usually the better choice for performance here.
- Regularization lowers variance but may increase bias.
Rubric: Full credit requires recommending regularization, explaining why it is preferred over reducing model size in this situation, and noting that it can increase 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
Regularization Lowers Variance but Raises Bias
Stopping Training When Validation Performance Stops Improving
Feature Selection and the VarianceāBias Trade-off
Using a Smaller Model to Control Variance
What is usually the first choice for reducing variance when enough data are available?
Regularization can lower variance even if it increases bias.
Stopping training early based on _____-set error can reduce variance.
Match each variance-reduction tactic with the main consideration that goes with it.
Order the steps for deciding how to reduce overfitting in a model.
Why should shrinking a model be treated as a cautious option when variance is high?
Prefer regularization when model cost is acceptable
How can error analysis suggest new input features?
Which choice describes early stopping for a model with high variance?
Installing a smaller set of features will always reduce variance without changing bias.