LatentEval

Glossary

Pairwise vs pointwise scoring

Pairwise and pointwise scoring are the two protocols an LLM judge can run under: pointwise grades one response on its own against an absolute scale, pairwise shows the judge two responses to the same prompt and asks which wins. Each licenses a different decision.

Pairwise and pointwise scoring are the two protocols an LLM judge runs under, and they differ in what the judge is shown rather than in how carefully the rubric is written. Pointwise scoring, called single answer grading in the paper that named pairwise comparison, single answer grading and reference-guided grading (Zheng et al., NeurIPS 2023 Datasets and Benchmarks Track), hands the judge one response and asks for a score against a stated scale; reference-guided grading is that same protocol with a worked solution supplied alongside, so it sits on the pointwise side of this split. Pairwise scoring hands it two responses to the same prompt and asks which one wins, usually with a tie permitted. That choice fixes what the resulting number can certify: a pointwise score can be held against a fixed release threshold, while a pairwise result can only order the two candidates that were actually put in front of the judge.

A pairwise result is a count of wins over comparisons, so it is a proportion and it inherits every obligation a proportion carries, starting with an interval. It is also a proportion measured against one specific opponent, which means the opponent belongs in the report beside the number. A pointwise result is a mean over items on a scale the judge itself has to hold steady, so its uncertainty has two sources: the sampling of the item set, and any movement in the scale between runs. Report the pairwise figure as a win rate with its denominator and the interval any eval metric owes its reader, and report a pointwise mean only alongside evidence that the scale underneath it did not move.

Both protocols sit under the same three-axis check the judge-reliability hub applies to any evaluator: agreement with a human reference, whether stated confidence tracks accuracy, and bias. The protocol decides which distortions get an opportunity to fire. Order effects need two responses on screen before there is an order to prefer, so they belong to pairwise. A standard that slides mid-run surfaces in pointwise means, where nothing anchors this week’s 4 out of 5 to last quarter’s. Pick the protocol from the decision you owe, then test for the failure modes that protocol admits. The vocabulary page that separates a judge defect from a design choice counts this protocol choice as the sixth of its terms, a decision taken before any grading begins rather than a defect the grading produces.

Pairwise scoring vs pointwise scoring

Pointwise scoring produces a number on a scale the judge has been told to use, most often a 1-to-5 rubric or a pass/fail verdict, computed for each response with no other response in context. Pairwise scoring produces an ordering over exactly the pair shown, and a win rate once you aggregate across the item set.

Each protocol has its own way of going unstable, and the two mechanisms are unrelated. Pointwise scores destabilize when the judge changes, because an absolute scale lives entirely inside the model that was asked to apply it. Zheng and colleagues put it plainly: “absolute scores are likely to fluctuate more than relative pairwise results if the judge model changes.” Pairwise verdicts destabilize when the two responses are close in quality, because a judge with no real separation to find falls back on surface features such as length, and the ordering it returns can flip when you swap the positions.

Their compensating strengths run the other way round.

A pointwise score answers the threshold question a release gate asks: does this build clear the bar? A win rate against last month’s build leaves that open, since one candidate beating another says nothing about whether either is good enough to ship. Pairwise discrimination is finer in return, because two responses that both land on 4 out of 5 can separate cleanly the moment a judge sees them together.

Score the same item set under both protocols, on the same schedule. Pairwise decides which candidate wins, pointwise decides whether the winner clears your bar, and a disagreement between the two is a finding about the judge rather than about the systems.

How to calculate a pairwise win rate

Fix the opponent first, run every prompt in the item set through both systems, then present each resulting pair to the judge twice with the positions swapped. Count a verdict as decisive only when both orders agree, and hold the disagreements in their own column instead of folding them into whichever side won on the second pass. The win rate is decisive wins over total comparisons, with declared ties kept in the denominator and reported as their own share, since a protocol that quietly drops ties inflates whichever side takes the close calls. Put a Wilson interval on the result with the pass-rate interval calculator, and publish the opponent, the item set and the judge model version beside the figure, because none of the three is recoverable from the number afterwards.

The swap step earns the extra judge calls it costs. Generating two near-identical answers for each first-turn MT-bench question and then reversing their order, Zheng and colleagues found GPT-4 returning the same verdict on 65.0% of cases under their default prompt, with GPT-3.5 at 46.2% and Claude-v1 at 23.8%. Those are deliberately hard pairs, drawn from one model sampled twice, so they set a floor rather than a typical rate. The swap-consistency test does the counting and runs an exact binomial test for a directional preference, and it sits early in the gate order that has to clear before a ranking ships.

Pairwise win rate vs Bradley-Terry rating

A Bradley-Terry rating is a latent strength score fitted across many pairwise comparisons at once, under a model where the probability one system beats another is a logistic function of the gap between their two coefficients. A win rate is the raw outcome of a single matchup, and it exists before any model is fitted to it. Chatbot Arena runs the fit at scale, converting crowdsourced pairwise votes into one ranking with an interval on each coefficient, over 240K votes across more than 50 models as of January 2024 (Chiang et al., arXiv preprint, March 2024).

The fit buys transitivity that raw win rates do not have. A system can hold a winning record against B while losing to C, which itself loses to B, and those three head-to-head numbers yield no ordering at all. Fitting the model smooths such cycles onto a single axis, at the price of assuming one dimension of quality explains the votes. For an internal eval with one incumbent and one candidate, the win rate is the whole answer; once three or more systems have been compared unevenly, the fit is how a ranking uses every comparison rather than only the direct ones.

Pointwise, pairwise and listwise in learning to rank

Information retrieval used these words first, for something adjacent and different. Tie-Yan Liu’s 2009 survey in Foundations and Trends in Information Retrieval sorts learning-to-rank algorithms into pointwise, pairwise and listwise families, where the words name the shape of the training loss. A pointwise loss scores each document on its own, a pairwise loss penalizes inverted pairs, and a listwise loss optimizes a metric computed over the whole result list. That is a legitimate and much older use of the vocabulary, describing what a ranker’s objective function consumes during training rather than how anyone evaluates a finished model.

The collision misleads in one specific direction, so it is worth conceding. A practitioner who met the words in IR will reasonably expect a listwise option, and a judge can indeed be run listwise, ranking k responses in a single call. Treat that as a protocol of its own, carrying its own failure surface, since the judge now has to hold an ordering in working memory and position effects compound across every slot rather than across two.

Nearly every judge-produced number anyone publishes comes out of one of these two protocols, and each covers the other’s blind spot. Choosing between them is one decision inside the wider question of what each kind of eval can certify. The full taxonomy of judge distortions, with the detection test that catches each one, is in LLM-as-a-judge bias and the tests that catch it. To turn a raw judge rate into a reportable one, corrected and carrying its uncertainty, work through bias-correcting a judge eval before you report it.