Kubnal Bridge

Core Concepts

Overfitting

An overfit model performs exceptionally well on training data but fails on new, unseen examples because it has memorized noise rather than learned general patterns. It is one of the most common failure modes in machine learning.

Prevention techniques include regularization (L1/L2), dropout, early stopping, cross-validation, and using more diverse training data. In LLMs, overfitting on fine-tuning data can cause the model to lose its general capabilities.

Authority Links

Related Terms