The journey begins when the model scans its vocabulary — modern tokenizers hold 100,000 to 200,000+ tokens — and assigns a raw score to every candidate. These scores are logits.
Logits are unnormalized real numbers: positive or negative, no upper limit. A higher logit means the model favors the word, but these are not percentages yet.
How to read this: “hot” and “cold” are neck-and-neck at the top, “cloudy” trails, and “frog” is buried below zero. Nothing here sums to 100 — that comes next.
Insight: these are raw outputs from the neural network’s final layer — preference, before probability.





