SantageAI Glossary › Overfitting
AI Glossary

What is Overfitting?

Overfitting occurs when an AI model learns the training data too closely, including its noise and anomalies, resulting in poor performance on new, unseen data.

What is the core idea behind overfitting?

The model memorized the answers instead of learning the subject.

How does overfitting differ from related concepts?

ConceptDifference
Overfitting vs UnderfittingOverfitting is too complex. Underfitting is too simple
Overfitting vs MemorizationMemorization is a symptom. Overfitting is the cause
Overfitting vs GeneralizationOverfitting is the failure to generalize

How does overfitting work?

What are the limitations of overfitting?

Why is overfitting important?

Overfitting is one of the most common failure modes in machine learning and must be addressed to build models that work in production.

How is overfitting used in practice?

Addressed through regularization, dropout, early stopping, data augmentation, and cross-validation.

Frequently Asked Questions

How can you detect overfitting?
By comparing performance on training data versus validation data. A large gap indicates overfitting.
Can overfitting be completely prevented?
It can be minimized through various techniques, but some degree of overfitting risk exists in all model training.