Rebuild Your Judge Into a Panel, Then Power It Properly
Two independent teams published the missing halves of the same problem this cycle: how much bias one judge injects, and how many items you need before a quality delta is real.
The mitigation stack is the transferable artifact
ClinReg's authors measured judge bias, then engineered around it. Four judges emit enumerated defects rather than scores; a defect counts only if at least 3 of 4 judges confirm it. A separate chairman model assigns severity and produces the number. The code-generation task used median-of-3 critics drawn from three distinct model families, scored against an FDA-reviewer rubric across four axes.
The statistics travel further than the roster. A continuous 0-10 holistic judgment is a high-variance regression problem. Defect enumeration with a confirmation quorum is lower-variance discrete detection, and severity assignment isolates into one auditable step. That generalizes to any rubric-scored generative eval.
The number Airbnb left implicit
Airbnb's published playbook sets the calibration bar at high-80s agreement between LLM judges and human reviewers, found after hand-reviewing 100 prototype outputs to enumerate real failure modes. Both numbers need arithmetic attached.
- Coverage. At n=100 random samples, a 3%-prevalence failure mode appears at least once about 95% of the time; at 1% prevalence, ~63%. A well-calibrated budget for taxonomy discovery, a bad one for rare-mode assurance.
- Resolution. High-80s agreement is 12-13% disagreement with ground truth. At judge pass rates near 0.85, detecting a 3pp quality delta at 80% power in an unpaired design needs on the order of 2,200 items per arm. Most suites run 50-200 and call a 2-3 point move a win.
If you cannot state your judge's agreement rate with human labels, every eval number you shipped this quarter is a point estimate with an unknown error bar around it.
Where the sources agree, and where they diverge
All three accounts agree the rejection signal dominates the generator. Spotify is the cleanest evidence: static codemods grew to thousands of lines of edge cases, early LLM rewrites without a gate barely beat them, and only agent-plus-judge-plus-verification reached ~80% PR success. The divergence is attribution. Spotify rebuilt its test automation while adding the judge, so that lift is confounded between a deterministic gate and an LLM one. Copy the judge alone and expect a fraction of the effect.
ClinReg admits a worse confounder. Several results moved more with harness, validator strictness, stopping criteria and retry behaviour than with which model was running. The intended independent chairman judge refused the prompts on biological-safety grounds, forcing arbitration onto Opus 4.8, a family under evaluation. Refusal rate belongs on the eval scorecard, with a deterministic fallback chain for both generation and evaluation roles.
The two metrics worth stealing outright
ClinReg split "hallucination" over a 108-field intermediate extraction step into two deterministic rates. Omission rate counts a present field marked missing to dodge penalty. Fabrication rate counts a wrong value emitted for a present field. Boilerplate citations are excluded from fabrications, silent source fields from omissions. Opus 4.8 showed higher omission and lower fabrication than GLM 5.2 at a similar holistic score. A single 0-10 rubric would have averaged that distinction into invisibility. That distinction decides which model routes to a filing and which to a triage queue.
What to do
Run a self-preference audit this sprint: score one fixed set of ~100 outputs from N generators with N judges, then report each judge's mean, pairwise scale drift, and own-minus-cross-output delta. Target absolute delta under 0.25 and inter-judge correlation above 0.8.
Convert every prompt and model comparison to a paired design on identical inputs and seeds before the next bake-off, and report the required n alongside the result.
Add deterministic omission-rate and fabrication-rate metrics to every extraction eval you own this quarter, keyed to a field-level ground-truth schema.