The news. On July 6, 2026, researchers posted LLM-as-a-Verifier to arXiv, arguing that verification — the ability to determine whether a solution is correct — is a new axis you can scale. Instead of asking a judge model for a discrete label, they compute an expectation over the scoring-token logits to get a continuous score, then scale three knobs: score granularity, repeated evaluation, and criteria decomposition. They report 86.5% on Terminal-Bench V2 and 78.2% on SWE-Bench Verified, plus strong results on RoboRewardBench and MedAgentBench and an extension for Claude Code. Read the paper →
Picture an Olympic diving judge. The old way, the judge watches a dive and holds up one card: a 7. It's a clean verdict, but it hides everything the judge was unsure about — and when the next diver also gets a 7, the two are tied and the scoreboard can't separate them. Now imagine the judge instead reveals their whole spread of confidence — how likely they thought each score was — and you take the weighted average. One dive lands a hair above the other, and the tie breaks. That shift, from a single card to the weighted average of the judge's whole spread, is exactly what LLM-as-a-Verifier does to an AI verifier. The judge is the verifier model, the single card is a discrete label, the spread is the model's scoring-token logits, and the weighted average is a continuous score fine enough to rank near-ties.
Drop the metaphor and the mechanism is precise. You prompt a verifier model with the scoring criteria and ask it for a score. Normally you take the single token it samples or its top pick — one label, exactly like the pass/fail signal most evals stop at. LLM-as-a-Verifier instead keeps the model's full probability distribution over the scoring tokens and computes its expectation — each possible score times its probability, summed into one continuous number. Because that number preserves small differences in probability mass, it ranks and calibrates better than a hard label, and it reuses the logit distribution the verifier already produces — no extra model, no second scoring pass.
The deeper claim is that this makes verification a scaling axis, not a fixed component. Once your score is continuous, three cheap knobs each buy more verification signal without ever touching the agent — the same way you'd scale a diving panel by using finer cards, polling more judges, and scoring each element of the dive on its own:
| Scaling knob | What it does | Why it helps |
|---|---|---|
| Score granularity | reads a finer scale from the logit distribution | preserves gaps a coarse label rounds away, so near-ties separate |
| Repeated evaluation | scores the same solution several times and averages | cuts the variance in any single noisy judgment |
| Criteria decomposition | splits one hard verdict into simpler sub-scores | each sub-decision is easier and less gameable than an all-or-nothing call |
Here is the granularity knob made concrete (illustrative numbers; the paper's benchmark figures are below). Two agent solutions, A and B, both get a top pick of 7 on a ten-point scale — a discrete tie. But their distributions differ. A puts probability {6: 0.10, 7: 0.55, 8: 0.30, 9: 0.05}, so its expectation is 6(0.10) + 7(0.55) + 8(0.30) + 9(0.05) = 7.30. B puts {6: 0.30, 7: 0.50, 8: 0.18, 9: 0.02}, so its expectation is 6(0.30) + 7(0.50) + 8(0.18) + 9(0.02) = 6.92. The discrete label calls it a tie at 7; the continuous score says A (7.30) clearly beats B (6.92) — a ranking the old label simply couldn't express, recovered from probabilities the model already produced. In production terms, that sharper score is what teams increasingly grade live agents and feed back as a dense training reward.
On real benchmarks the paper reports the continuous verifier reaching 86.5% on Terminal-Bench V2 and 78.2% on SWE-Bench Verified, alongside 87.4% on RoboRewardBench and 73.3% on MedAgentBench (paper). The point isn't any single number — it's that the same lever, a richer score, keeps paying off across very different agentic domains.
Goes deeper in: AI Agents → Evals & Diagnostics → Pass/Fail vs Score
Related explainers
- The Verification Horizon — Co-evolving verifiers — the companion argument: verification is now the bottleneck, and a fixed verifier saturates as the agent improves
- MaxProof — defense-in-depth generative verifier — a verifier model up close, hardened so a strong solver can't fool it
- Reasoning Arena — Bradley-Terry trace ranking — what to do when a binary verifiable reward ties: rank the traces instead of scoring them pass/fail
- CoPD — Reinforcement Learning with Verifiable Rewards (RLVR) — the training regime a continuous verifier feeds a dense reward into