Decoding starts from logits, scores over a fixed vocabulary. This lesson shows the source integers before any selection is displayed.
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.
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.
ℓ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.
display logits first