What is a Supervised Learning?
Training a system using examples where the correct answer is already known, so it learns to map inputs to labels.
Supervised Learning explained in plain English
Supervised learning means training a system using examples where the correct answer is already known. The system learns the relationship between inputs and labels, then tries to apply that relationship to new, unseen inputs.
It is the most common approach when you have clearly defined outcomes to predict.
Analogy
Supervised learning is like studying for an exam using a textbook full of questions and official answers. Once you understand the pattern, you can attempt new questions you have never seen before.
Example
Spam filters, house price estimators, and disease classifiers are classic supervised learning applications.
How is Supervised Learning used?
Doctors train diagnostic tools by feeding them thousands of X-rays already labelled as healthy or diseased. Customer service teams train chatbots using past conversations marked as good or bad responses.
Common misconceptions about Supervised Learning
Supervised learning only works as well as the labels you provide — noisy, biased, or incomplete labels produce unreliable models.
People also read
- Artificial Intelligence
Any system that performs tasks requiring human judgment — understanding language, recognising images, making decisions, or solving problems — by finding patterns in data rather than thinking or feeling.
- Backpropagation
The process that tells a neural network which internal settings caused an error and how to adjust them, working backwards through layers.
- Classification
The task of sorting inputs into predefined categories — choosing a label rather than producing a number.
- Embedding
A numerical representation of text, images, or other data that captures semantic meaning.
- Fine-tuning
The process of further training a pre-trained AI model on specialised data to improve performance on specific tasks.
- Gradient Descent
The method by which a model gradually improves by making small adjustments after each mistake, moving toward better performance.
- Inference
The phase when a trained model is actually used — taking new input and producing a prediction or response.
- Machine Learning
A way for computers to learn from examples instead of being given exact rules — by finding patterns in labelled or unlabelled data.
- Neural Network
A layered system that processes information in stages, with each layer detecting slightly more complex patterns than the last.
- Overfitting
When a model memorises training examples too precisely and fails to generalise to new data.