Softmax converts logits into probability weights with exponentials. The expression is named instead of decimalized, while argmax and top-k stay exact.
highlighted = computed this step
Probabilities: the named boundary
Softmax converts logits into probability weights using exponentials. The expression is named in the diagram and never pinned as a decimal. This is where decoding crosses from exact ordering into named probability mass.
softmax(ℓ)i=eℓi/j∑eℓj
Selection stays exact
Argmax and top-k use integer ordering. Only the probability mass crosses the named softmax boundary. That means the selected token can be exact even though the probability expression remains symbolic.
ordering exact; softmax named
Summary
Sampling depends on probability mass, so it stays outside this exact page. The separate top-p page uses assigned exact weights only. This softmax page shows no decimal probability weights.