DYAP 00515–20 minute lesson

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.

Editorial learning illustration for Supervised Learning Fundamentals
Visual guide · Use the flow from inputs and evidence to models, outputs and human decisions.

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.

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.

01

Label

The correct target supplied with a training example.

02

Classification

Prediction among discrete categories.

03

Regression

Prediction of a continuous numeric value.

04

Decision threshold

The score boundary used to convert a probability into an action.

Real-world example

Student support alerts

A model estimates which learners may need assistance based on engagement patterns.

What this teaches: The label must not become a judgement of ability. Use the prediction to offer support, not automatically penalise a student.

Practical activity

  1. Write one classification and one regression problem from your profession.
  2. Define the input features and label.
  3. 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.

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.

Reflection

If you cannot explain the answer without reading it, revisit the core explanation and example before continuing.

Important industry resources

These links lead to official organisations, industry laboratories or established open-source learning projects.