Greedy decoding takes the largest logit at each step. The rule is deterministic because the tie-break is fixed and the comparison uses exact integer logits.

highlighted = computed this step

Greedy decoding

Greedy decoding picks the largest displayed logit at each step. Equal logits use the lowest vocab index as the deterministic tie-break. The rule is exact because it compares integers, not rounded probabilities.

argmax with lowest-index tie-break\operatorname{argmax}\text{ with lowest-index tie-break}
Greedy selectionsEach step chooses the exact argmax.Greedy selectionsEach step chooses the exact argmax.exact greedy decode stepdisplayed integer logits are the source; ties break by lowest vocab indexstep 1 logits: a=3, b=1, c=2tokenlogitranka31b13c22ranked order: a > c > bgreedy argmax: agreedy selection uses exact ordering; the branch list is not shown in this viewexact greedy decode stepdisplayed integer logits are the source; ties break by lowest vocab indexstep 2 logits: a=0, b=4, c=1tokenlogitranka03b41c12ranked order: b > c > agreedy argmax: bgreedy selection uses exact ordering; the branch list is not shown in this view

Two exact choices

The first step chooses a from logit 3, and the second step chooses b from logit 4. These are argmax decisions over the shown logits, so the output path is reproducible.

step onea,step twob\text{step one}\rightarrow a,\quad \text{step two}\rightarrow b
Greedy selectionsEach step chooses the exact argmax.Greedy selectionsEach step chooses the exact argmax.exact greedy decode stepdisplayed integer logits are the source; ties break by lowest vocab indexstep 1 logits: a=3, b=1, c=2tokenlogitranka31b13c22ranked order: a > c > bgreedy argmax: agreedy selection uses exact ordering; the branch list is not shown in this viewexact greedy decode stepdisplayed integer logits are the source; ties break by lowest vocab indexstep 2 logits: a=0, b=4, c=1tokenlogitranka03b41c12ranked order: b > c > agreedy argmax: bgreedy selection uses exact ordering; the branch list is not shown in this view

Argmax on the number line

Place the first step's logits a=3, b=1, c=2 on one axis. The greedy argmax is the rightmost point, a. Argmax of the logits equals argmax of the softmax, so the choice is exact without evaluating probabilities.

argmax(3,1,2)a\operatorname{argmax}(3,1,2)\rightarrow a
Greedy argmax on the logit axisStep-one logits on a number line; the greedy argmax token is marked.greedy argmax over logits a=3, b=1, c=201234argmax aa=3b=1c=2greedy argmax is exact and deterministic over the displayed logits (ties break bylowest index); this is a STATED decoding policy, it does not claim the softmaxprobability is shown, NOT a probability claim, NOT a generalization claim

Summary

The greedy output is a, b. The output comes from exact integer ordering, not from a probability calculation. That split is the core honesty boundary for decoding.

greedy decode=a,b\text{greedy decode}=a,b
Greedy selectionsEach step chooses the exact argmax.Greedy selectionsEach step chooses the exact argmax.exact greedy decode stepdisplayed integer logits are the source; ties break by lowest vocab indexstep 1 logits: a=3, b=1, c=2tokenlogitranka31b13c22ranked order: a > c > bgreedy argmax: agreedy selection uses exact ordering; the branch list is not shown in this viewexact greedy decode stepdisplayed integer logits are the source; ties break by lowest vocab indexstep 2 logits: a=0, b=4, c=1tokenlogitranka03b41c12ranked order: b > c > agreedy argmax: bgreedy selection uses exact ordering; the branch list is not shown in this view