Learn Before
Explain why enlarging a model can help, and what new problem it may create.
Question: A classifier is clearly underfitting: its training performance is poor and the model seems too limited. Explain why increasing model capacity can help, what risk this change introduces, and how that risk is commonly handled.
Sample answer: Increasing model capacity, such as by adding more hidden units, layers, or tree depth, gives the learner more flexibility to fit the training data. That often lowers avoidable bias when the original model was too small. The trade-off is that a more flexible model can also fit noise in the training set more easily, which raises the chance of overfitting and increases variance. This side effect is usually controlled with regularization, and in some settings with more data or early stopping as well.
Key points:
- Larger models can reduce underfitting and lower avoidable bias.
- Extra capacity helps the model fit the training set better.
- A larger model can also increase variance and overfitting risk.
- Regularization is a common way to limit that added variance.
Rubric: Full credit requires explaining why increasing capacity can improve fit, identifying the possible increase in variance or overfitting, and stating that regularization is used to manage that risk.
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 would a team choose a larger neural network during development?
True or False: A larger model can reduce underfitting, but it may also become more sensitive to noise in the training data.
Fill in the blank: When a larger model begins to overfit, _____ is commonly used to reduce the resulting variance.
Match model adjustment terms with their descriptions.
Order the actions for handling high avoidable bias.
Which change most directly increases a neural network's capacity?
True or False: Increasing the width or depth of a neural network can reduce underfitting.
Fill in the blank: Increasing the model’s capacity can reduce _____ error caused by an overly simple model.
Match each concept with what usually happens when model capacity increases.
Steps for Increasing Model Capacity Safely
Explain why enlarging a model can help, and what new problem it may create.
Handling variance after enlarging a fraud-detection model
Why can a larger model lower avoidable bias?