Supervised Learning
Definition
Supervised learning trains a model from examples paired with known labels or target values. Classification and regression are common supervised tasks.
What is supervised learning?
Supervised learning trains a model using examples paired with known target outputs. If the target is a category, the task is classification; if the target is a continuous number, the task is usually regression.
A concrete example
To train an image classifier for cats and dogs, a dataset contains images together with labels indicating the correct class. The model predicts a class, a loss function measures the error, and training adjusts model parameters to reduce that error over many examples.
Training is not the same as testing
Useful evaluation requires data that the model did not simply memorize during training. Datasets are therefore commonly separated into training, validation and test portions. The core question is whether the model generalizes to new examples drawn from the intended problem.
Related terms, defined
Reference guide and primary sources
Wikipedia is used here as a terminology and history reference guide. Current model versions, institutional statistics and product-specific claims are also linked to first-party or institutional sources because those details can change faster than encyclopedia articles.