Key Takeaway
Using a language model’s full token-probability distribution to produce continuous verifier scores lets you pick better agent behaviors, monitor task progress, and speed up learning—without extra training.
ON THIS PAGE
What They Found
Scoring candidates by the expectation over token logits (rather than forcing a single discrete score) produces fine-grained, calibrated verification signals that reduce ties and improve discrimination between correct and incorrect solutions. Verification gets better along three levers you can tune: finer score granularity, repeated evaluations to average out noise, and decomposing evaluation into multiple criteria. With a cost-aware ranking tournament to focus comparisons, the approach sets new state-of-the-art results across coding, robotics, and medical benchmarks, and the continuous score also serves as a reliable progress measure and a usable dense reward for reinforcement learning.
Key Data
1Improved top-1 accuracy on Terminal-Bench V2 from 83.1% to 86.5% using the verifier to pick among five candidates.
2Pairwise verification accuracy rose from 73.1% (granularity G=1) to 77.5% (G=20), showing finer token granularity yields clearer separation.
3Using verifier scores as dense rewards reduced environment steps by ≈1.8× on a robotics benchmark (LIBERO) and improved sample efficiency ≈1.1× on a math reasoning benchmark (MATH).
What This Means
Engineers building multi-step AI agents or tool-using bots, because the method helps pick the best run from many candidates and provides a live progress signal you can surface to users. ML engineers and researchers fine-tuning policies will benefit from the dense, training-free reward signal to speed up reinforcement learning. Technical leads responsible for production agent monitoring can use the verifier score as an early-warning and auditing signal for long-running jobs. multi-step AI agents and production agent monitoring are especially relevant.
Explore evaluation patternsSee how to apply these findings
Key Figures

Fig 1: Figure 1 : Overall Performance Results. Our proposed framework, LLM-as-a-Verifier , achieves state-of-the-art performance across coding, robotics, and medical domains: Terminal-Bench V2 (86.5%), SWE-Bench Verified (78.2%), RoboRewardBench (87.4%), and MedAgentBench (73.3%).

Fig 2: Figure 2 : Multiple modalities, many applications, one unified verification framework. We present LLM-as-a-Verifier, a general-purpose framework that provides fine-grained feedback for any modality without requiring additional training. By leveraging the full distribution of scoring-token logits, our method captures evaluation uncertainty and enables verification to scale along three dimensions: score granularity, repeated evaluation, and criteria decomposition. The resulting fine-grained feedback can be used for test-time scaling, progress tracking, and reinforcement learning.

Fig 3: Figure 4 : Verification Scaling. We find that verification accuracy consistently improves as we scale across multiple dimensions: (1) the granularity of score tokens, (2) the number of repeated evaluations, and (3) the decomposition of evaluation criteria. Verification accuracy is measured as the pairwise accuracy of the verifier in assigning a higher score to the ground-truth successful solution than to failed solutions for the same task on Terminal-Bench V2.

Fig 4: Figure 6 : Probabilistic Pivot Tournament. A five-stage pipeline for selecting the best of N N candidates under a constrained verification budget. (1) Candidates: the pool { τ 1 , … , τ N } \{\tau_{1},\dots,\tau_{N}\} to be ranked. (2) Ring pass: a random Hamiltonian cycle scores the N N adjacent pairs so every candidate appears once in the “A” slot and once in “B”, canceling the model’s positional bias. (3) Pivot selection: candidates are ranked by their ring-pass scores w ( i ) w_{(i)} , and the top- k k candidates form the pivot set 𝒫 \mathcal{P} . (4) Pivot tournament: every non-pivot–vs–pivot and pivot–vs–pivot pair is scored via Eq. 3.2 , concentrating the budget on uncertain top candidates and cutting cost from 𝒪 ( N 2 ) \mathcal{O}(N^{2}) to 𝒪 ( N k 2 ) \mathcal{O}(Nk^{2}) . (5) Selection: comparisons are aggregated into win mass w i w_{i} and count c i c_{i} , and the candidate with the highest normalized w i / c i w_{i}/c_{i} is returned.
Ready to evaluate your AI agents?
Learn how ReputAgent helps teams build trustworthy AI through systematic evaluation.
Learn MoreYes, But...
Best results assume access to token-level log probabilities; while a workaround exists for models that don't expose them, it can add complexity. The method increases verification compute because it runs repeated evaluations and multiple criteria—tradeoffs need tuning for your budget. Verifier judgments still reflect the underlying language model’s biases and may be gamed by generators optimized against it, so validate in-domain before deployment. verification compute
Deep Dive
Use the model’s full scoring distribution instead of forcing a single token output. Compute a continuous score by taking the expectation over the scoring-token logits; average multiple runs and evaluate on separate criteria to reduce noise and prompt bias. To rank many candidate trajectories efficiently, run a lightweight ring pass to cancel ordering bias, select a small pivot set, and run concentrated pairwise comparisons (the probabilistic pivot tournament) to cut comparisons dramatically while preserving ranking quality. Applied out of-the-box across coding, robotics, and medical benchmarks, the verifier improved best-of-N selection (e.g., Terminal-Bench V2 top-1 from 83.1% to 86.5%), eliminated many ties common with discrete judges, and produced a progress score that correlates with chronological task completion (high Spearman correlation). The same continuous score can be used as a dense reward to improve reinforcement learning sample efficiency (≈1.8× fewer steps on a robotics task). Practical caveats include additional verification compute, dependence on token-logprob access (or using the two-stage workaround), and the need to monitor for verifier-model bias if the generation policy adapts to the verifier. dense reward
Test your agentsValidate against real scenarios
Credibility Assessment:
Includes several well-known researchers (e.g., Azalia Mirhoseini h≈36, Chelsea Finn, Ion Stoica) and some citation count — strong author reputations though arXiv venue, so rated high but not top-tier per rubric.