Tell apart raw score, hidden activation, probability and chosen class.
Proof of success: explain "Activations, logits and the final choice", complete "From Score to Shares" and name the limit of the analogy.
At the pattern tournament, Zoé gets three numbers: 2.1; −0.4; 0.8. Those are logits, not probabilities: they are neither restricted to 0–1 nor forced to add to 1. Softmax turns them into positive shares that sum to 1. The category with the highest score can be picked, but the team also keeps the uncertainty and an abstention threshold for cases that are too close.
A convincing answer links an input to a measured output. Keep these three facts in view. Here, your anchor is "Activations, logits and the final choice".
The path separates activation, logits, normalization and decision rule instead of treating softmax like certainty. Read the diagram from top to bottom: each arrow announces a transformation or a check, never a thought inside the machine.
The analogy: Logits are like the raw points from a jury, and softmax then converts them into comparable shares.
Where it breaks: A true probability requires more than a math conversion: if the model is poorly calibrated or out of context, a 90% share can be misleading. An analogy helps you get started; it never replaces the data, the calculations or a test.
Materials: three logit cards 2, 1 and 0, six tokens, a ReLU rule and a simplified softmax table
Suggested time: 10 to 20 minutes.
What you should notice: score, activation, probability and decision are four different objects that must not be confused.
Add the same constant to all three logits. Check that the softmax proportions don't change, then explain this invariance.
Forcing a choice can hide uncertainty. In a sensitive situation, allow "not enough to decide" and hand the case to a qualified person.
Responsible question: Who sets the abstention threshold, and which errors should be reviewed before choosing it?
Must a logit be between 0 and 1?
Answer: No. It is a raw score that can be negative or greater than 1.
Why a non-linear activation between the layers?
Answer: It lets us represent relationships that a purely linear stack cannot create.
Does a softmax output of 0.9 guarantee the right class?
Answer: No. Calibration and context must be checked on separate data.
Score Interpreter — You earn this badge if you can explain the diagram without reading, show the result of the activity and kindly correct a wrong answer.