2026 Securities Licensing Study Guides (SIE, Series 7 & Series 66) are now live
Domain 1 • Chapter 1Section 1.3

1.3 Model Training Dynamics: Underfitting vs. Overfitting

Covers the bias-variance tradeoff, recognizing when models fail to generalize, and applying regularization and validation techniques.

🎯 Key AWS AI Exam Takeaways

  • Underfitting (High Bias) occurs when a model is too simplistic to capture underlying trends (high error on both train and val sets).
  • Overfitting (High Variance) occurs when a model memorizes training noise and fails to generalize to validation data.
  • Mitigate overfitting using L1/L2 regularization, dropout, data augmentation, and early stopping.

During model training, balancing capacity against generalization is governed by the bias-variance tradeoff. Underfitting (high bias) happens when the model architecture lacks the mathematical complexity to capture real relationships, resulting in poor accuracy across both training and validation sets.

Conversely, overfitting (high variance) arises when an overly expressive model memorizes individual training examples, including random statistical noise. In an overfitted model, training accuracy appears near-perfect while validation accuracy collapses on unseen samples.

To prevent overfitting, engineers apply regularization techniques that penalize excessive parameter weights (L1 Lasso or L2 Ridge regularization), introduce dropout layers in neural networks to prevent co-adaptation, expand dataset diversity via data augmentation, and enforce early stopping.

⚠️ Common Pearson VUE Exam Traps

  • Adding layers or training longer fixes underfitting, but severely worsens overfitting.
  • Never evaluate models solely on training data; always reserve isolated validation and test splits.

Knowledge Checkpoint

Knowledge Checkpoint • Section 1.3

A deep learning vision model achieves 99.4% accuracy on its training dataset but drops to 68.2% accuracy on the unseen validation dataset. The model has memorized training noise rather than generalizable features. Which combination of techniques should the team use to combat this overfitting?