Why a guess always comes out.
The phantom note isn't a glitch. It falls straight out of the same softmax you met in Lesson 5 — here's the arithmetic that guarantees it.
Every step, the model turns its raw scores — logits — into probabilities with softmax, then picks. The catch: softmax divides by the total, so the numbers always add up to 1. There is no "none of these" option. When the model truly knows, one note takes almost all of that 1 — a tall, lonely spike. When it doesn't, the same 1 gets smeared thinly across many notes, and the tallest still wins, on maybe 20%. That low, hollow winner is a hallucination in numbers.
Two traps follow. First, the winning height is the model's confidence, not its correctness — the two are only loosely linked, so a wrong note can still stand tall. Second, temperature (Lesson 5) reshapes how peaked the curve is, but never changes which note tops it. Cool a wrong answer down and you haven't fixed it — you've only made it sound more certain.
Flip between a note the model learned, one it never did, and the same unknown with the chart in context — then drag temperature and watch what it can and can't change.
The three lines of maths.
Nothing new since Lesson 5 — the same softmax, read for what it says about knowing and not knowing.
The phantom is baked into the pick.
A model has no way to answer "none of these". Softmax spends its whole budget of 1 every single step, so when the truth is absent, the budget lands on the least-bad impostor — confidently, because confidence is only ever the top bar's height. That's the phantom note, straight from the equation.
And notice what does not help: temperature can sharpen the curve but never moves the winner, so it can't rescue a wrong pick. The only lever that reshapes the logits themselves is grounding — putting the real material in context — which is exactly why retrieval, next, is the true cure.