overfitting (โมเดลท่องจำข้อมูลฝึกและล้มเหลวบนข้อมูลใหม่) และ underfitting (โมเดลง่ายเกินไปจนจับรูปแบบไม่ได้) เป็นสองปัญหาพื้นฐานใน ML การปรับสมดุลทั้งสอง คือการบรรลุ generalization ที่ดี เป็นศูนย์กลางของการสร้างโมเดลที่มีประสิทธิภาพ
overfitting เทียบกับ underfitting
OVERFITTING → the model learns the training data TOO well (including noise) →
→ performs great on training data but POORLY on new/unseen data (doesn't generalize)
→ too complex; memorizes rather than learns general patterns
→ like memorizing answers vs understanding the concept
UNDERFITTING → the model is TOO SIMPLE to capture the underlying patterns →
→ performs poorly on BOTH training and new data
→ not enough complexity/capacity to learn the patterns
→ the goal is GENERALIZATION: learn real patterns → perform well on NEW data
