Decoding starts from logits, scores over a fixed vocabulary. This lesson shows the source integers and vocab order before any selection or probability boundary appears.
highlighted = computed this step
From logits to tokens
Decoding starts with logits, which are integer scores over a vocabulary. This first view shows only the shown logits and the vocab order. Before probability enters, decoding can already make exact selections by comparing these displayed integers.
vocab=[a,b,c]
The first step's scores
The first step displays a=3, b=1, c=2. These integers are the source for later selection. The order of the vocabulary is also part of the source because it resolves ties deterministically.
ℓa=3,ℓb=1,ℓc=2
Summary
A decode step begins with displayed logits over the vocabulary. No probability or selection claim is needed in this opening view; the book first pins the exact scores that later rules consume.