🟪 1-Minute Summary

Underfitting occurs when a model is too simple to capture underlying patterns in data. Both training and validation performance are poor. Causes: model too simple, insufficient features, over-regularization. Solutions: more complex model, add features, reduce regularization, train longer. Less common than overfitting but equally problematic.


🟦 Core Notes (Must-Know)

What is Underfitting?

[Content to be filled in]

How to Detect Underfitting

[Content to be filled in]

Causes of Underfitting

[Content to be filled in]

Solutions

[Content to be filled in]

  1. Use more complex model
  2. Add more features
  3. Reduce regularization
  4. Train longer
  5. Feature engineering

🟨 Interview Triggers (What Interviewers Actually Test)

Common Interview Questions

  1. “What is underfitting?”

    • [Answer: Model too simple to capture patterns, poor on train AND test]
  2. “How do you distinguish underfitting from overfitting?”

    • [Answer: Underfitting = both train/test bad, Overfitting = train good/test bad]
  3. “How do you fix underfitting?”

    • [Answer: More complex model, more features, less regularization]

🟥 Common Mistakes (Traps to Avoid)

Mistake 1: Always adding complexity

[Content to be filled in - might already be at sweet spot]

Mistake 2: Confusing underfitting with overfitting

[Content to be filled in]


🟩 Mini Example (Quick Application)

Scenario

[Linear model for non-linear data]

Solution

# Example showing underfitting
# to be filled in


Navigation: