What is the core idea behind supervised learning?
Supervised learning learns from an answer key, generalising from labelled examples to new data.
How does supervised learning differ from related concepts?
| Concept | Difference |
|---|---|
| Supervised vs Unsupervised Learning | Supervised learning uses labelled data. Unsupervised learning finds structure in unlabelled data. |
| Supervised vs Reinforcement Learning | Supervised learning learns from correct answers. Reinforcement learning learns from rewards for actions. |
| Supervised vs Semi-Supervised | Semi-supervised learning mixes a small labelled set with a large unlabelled one to cut labelling cost. |
How does supervised learning work?
- A dataset of inputs paired with correct labels is prepared
- The model predicts a label for each input
- The error between prediction and true label is measured
- The model adjusts to reduce error and generalise to new data
What are common supervised learning tasks?
- Classification, predicting a category
- Regression, predicting a number
- Spam detection and image labelling
- Fraud and risk scoring
Why is supervised learning important?
Supervised learning is the most widely used form of machine learning in production, because labelled data maps directly to clear business tasks. Most classification and prediction systems in industry rely on it.
How is supervised learning used in practice?
It is used in email spam filters, credit scoring, medical diagnosis, image classification, and demand forecasting. Its main constraint is the need for large amounts of accurately labelled data, which is expensive to produce.
Frequently Asked Questions
What is the difference between supervised and unsupervised learning?
Supervised learning trains on labelled examples with known answers. Unsupervised learning works on unlabelled data to discover hidden patterns or groupings.
Do large language models use supervised learning?
Partly. Their pre-training is self-supervised, but supervised fine-tuning on labelled examples is a key step in making them follow instructions.