Supervised Learning Fundamentals
Supervised learning uses examples that include both the input and the correct target. The model learns a mapping that can predict the target for new inputs.

Learning objectives
What you will be able to do
- Explain supervised learning fundamentals accurately in your own words.
- Recognise how the concept appears in real AI products and professional work.
- Identify an important limitation, risk or evaluation requirement.
- Apply the concept through a practical activity and knowledge check.
Core explanation
Build the right mental model
The two major supervised tasks are classification and regression. Classification predicts a category such as fraudulent/not fraudulent. Regression predicts a numeric value such as energy demand or delivery time.
Labels must be meaningful and consistently produced. If different experts apply different rules, the model receives contradictory teaching signals. Label quality is often more important than adding a more complex algorithm.
Performance must be judged with a metric that matches the consequence of error. In medical screening or intrusion detection, missing a true event may be more serious than raising an extra alert.
Label
The correct target supplied with a training example.
Classification
Prediction among discrete categories.
Regression
Prediction of a continuous numeric value.
Decision threshold
The score boundary used to convert a probability into an action.
Student support alerts
A model estimates which learners may need assistance based on engagement patterns.
Apply your learning
Practical activity
- Write one classification and one regression problem from your profession.
- Define the input features and label.
- Identify the cost of a false positive and false negative.
Write your answers in a learning journal. The value comes from connecting the concept to your own profession.
Knowledge check
Test your understanding
Q1What information distinguishes supervised learning?
Answer: Training examples include known target labels or values.
Q2Why does the decision threshold matter?
Answer: It changes the trade-off between missed positive cases and false alarms.
If you cannot explain the answer without reading it, revisit the core explanation and example before continuing.
Continue with authoritative sources
Important industry resources
These links lead to official organisations, industry laboratories or established open-source learning projects.