Training on examples that come with the right answer attached, so the model learns to map inputs to known labels.
When a model learns the training data so closely — including its noise — that it performs worse on anything new.
An overfitted model has memorised rather than generalised. The tell is a widening gap between training performance and held-out performance: training loss keeps falling while validation loss flattens and then rises.
The usual causes are too little data for the model's capacity, or training for too long. The usual remedies are more data, augmentation, regularisation, dropout, and stopping early.
Its opposite, underfitting, is a model too simple to capture the real pattern — bad on training data and test data alike.
Training on examples that come with the right answer attached, so the model learns to map inputs to known labels.
A list of numbers representing a piece of data, arranged so that similar things end up close together.
A model built from layers of simple weighted units, trained by adjusting those weights until the output matches the target.
Finding structure in data that has no labels — clusters, groupings, or a compressed representation.
Learning by acting in an environment and adjusting behaviour based on rewards, rather than from labelled examples.
Reusing a model trained on one task as the starting point for another, instead of training from scratch.
Definitions are reviewed by our editorial team. Spotted a problem? Tell us.