SYNTHESIS NOTE
TopicsTest Time Computethis note

Can reading logit distributions break ties in LLM judging?

Standard LLM judges output discrete scores that create frequent ties between different solutions. Could computing expectations over scoring-token logits instead yield continuous scores that meaningfully discriminate between complex outputs?

Synthesis note · 2026-07-17 · sourced from Test Time Compute
How well do reward models actually evaluate AI reasoning? How do you navigate synthesis across fragmented research topics?

The concrete mechanism behind LLM-as-a-Verifier is a decoding change, not a training one. A standard LM judge is prompted to emit a discrete score token ("7 out of 10"), which quantizes the judgment and produces frequent ties between complex solutions that genuinely differ. LLM-as-a-Verifier instead computes the expectation over the distribution of scoring-token logits — a probabilistic read of how much mass the model puts on each score — yielding a continuous value. Because two solutions that both round to "7" almost always have different logit distributions, the continuous score separates them, substantially reducing tie rates.

This matters because ties are not a cosmetic annoyance; they are lost signal. Any pipeline that ranks candidates — best-of-N selection, RLAIF, multi-agent arbitration — degrades when the verifier cannot discriminate, and Do LLM judges systematically favor LLM-generated arguments? shows the same judging layer already carries bias. Reading logits rather than sampled tokens recovers the fine-grained separation the argmax throws away, and does so with no extra model and no training — the information was always in the distribution.

The deeper point connects to the verification-as-scaling-axis thesis: continuous scoring is what makes the "granularity" axis dial actually turn. You cannot meaningfully scale score granularity if the output is a coarse integer; expectation-over-logits is the operation that makes granularity a continuous knob, therefore enabling the calibration gains the framework claims.

Inquiring lines that read this note 4

This note is a source for these research framings, grouped by the broader line of inquiry each explores. Scan the bold lines of inquiry; follow any specific question forward.

How do language models inherit human biases from training data? Can ensemble evaluation methods reduce bias more than single judges?

Related concepts in this collection 2

This note in its neighbourhood — explore the map, then jump to a related concept in the list below.

Concept map
13 direct connections · 108 in 2-hop network ·medium cluster Open in graph ↗

Click a node to walk · click center to open · click Open in graph to see this note in the full knowledge graph

your link semantically near linked from elsewhere

Related papers in this collection 8

Papers most semantically related to this note, ranked by cosine similarity in the embedding space.

Original note title

taking the expectation over scoring-token logits gives continuous verifier scores that break the ties discrete LLM judges produce