Skip to content
Back to How Models Learn
PL

Prediction, Loss, and Updates

Learn the core training loop by following predictions, measuring loss, and explaining how updates reduce error over repeated examples.

25 minHow Models Learneasy100 XP

Listen to hear this room section by section.

Key Ideas

Work through these sections in order. Each one builds the mental model you need before the checkpoint questions will feel easy.

In supervised learning, the model first sees an input and produces a prediction using its current parameters. That prediction is then compared with the target for that example. The difference between the prediction and the target becomes feedback for learning.

One pass through this loop rarely teaches much by itself. Learning comes from repeating the cycle across many examples so that useful patterns are reinforced again and again.

You've opened 1 of 3 sections. Once the ideas feel clear, move into the checkpoint block below.

Check Your Understanding

These checkpoints reinforce the lesson you just read. If one feels fuzzy, reopen the relevant section above before trying again.

3 checkpoints
1

Task 1

Put the loop in order

Arrange the steps that happen in a standard supervised training cycle.

Order the training loop from prediction to improvement.

1

The current model makes a prediction

2

The system measures loss against the correct answer

3

The optimizer updates the parameters

4

The process repeats across more examples

2

Task 2

Define loss

Choose the explanation that best captures what loss represents.

What does loss measure in a simple training loop?

3

Task 3

Explain why the model updates

Write a short plain-language explanation of why parameter updates depend on loss.

Why does the training process update parameters after measuring loss?

Ready To Move On?

Up next: Gradient Descent Intuition