All posts
AI/ML Research

Black-Box LLM Judges Can Fail Reliability Tests

arXiv 2609.04198 reports black-box LLM judge reproducibility at Spearman 0.400, below 0.99. It preregisters experiments and recommends auditing calibration before live scoring.

Sep 5, 2026 6 min read

Why this matters now

LLM judges are critical infrastructure for filtering training data, judging creative outputs, and ranking search results. Yet using the same model name can still yield different answers when queried later, which is exactly the reliability assumption that breaks when treating LLMs as scientific measurement tools. arXiv 2609.04198 tested that assumption with preregistered experiments and found measurement reliability failures across the board.

Background and problem statement

Prior judge work reports position bias, self-consistency, and nondeterminism separately. Most results were engineered after the fact, while preregistered thresholds and protocols that could lock the full experiment beforehand were missing. This paper treats black-box LLM judges as scientific instruments and reports whether they remain stable under frozen thresholds and preregistered protocols.

Experiment design and results

Two preregistered replication studies were run, and all parameters were fixed before data collection. From 52,988 judged requests, within-time-window repeated rankings produced Spearman 0.400, missing the required 0.90 threshold.

In the exact-rerun reproducibility experiment, agreement was 0.78 versus the required 0.99. Prompt engineering, schema validity, request timeout, and logged metadata were all numerically identical, but the engineering code alone still reported metric values without passing reliability checks.

Analysis used 31 valid task groups, 100 reruns, 10-hour checkpoints under guarded replication, and 3,060 constructed-error evaluations. No significant effects were found for metric substitution or sampling bias corrections, while a simulation design that would have required 748,000 queries returned a zero-pass rate across 500 trials, showing that replication is harder than expected.

Failure modes to watch

The paper identifies several reliability failure modes.

One is label-to-meaning mapping bias. Category labels use language close enough to a referent that they create comfortable similarity. When labels are embedded and analyzed in protocol, the ranking appears aligned with referent but can drift by scale.

Another is candidate gap, where the instrument's noise floor is seven or more orders of magnitude smaller than observed variance, so the measured effect cannot exceed the instrument's resolution. With decision boundaries near the noise floor, reranking changes ranks by the time of recurrence.

Batch-identical permutation instability is also present. Exact-permutation readout was implemented as a plugin to expose this noise. Continuous noise feeding into argmax or ranking means that small changes also invert rank order.

Light-touch follow-up fixes

Prefetch post-evaluation narrows the issue. Same-day rerun correlation was 0.805 versus 0.800 the next day, so time passing does not help.

Across four providers and three roles, every plugin showed the same reliability failure with median 0.74-0.88. The system_fingerprint metadata field did not predict failure mode stability.

Batch-invariant plugin snapshots helped when the server was healthy, but when concurrent requests spiked, the mismatch rate jumped 8.4-fold and fell to shared endpoint ordering.

Practical guidance

A ladder of L0-L2 snapshot-identity protocols plus an 8-step design and reporting checklist is proposed. L0 uses simple model name, L1 uses fixed snapshots or pinned deployments, and L2 uses host-scoped snapshots with hard-coded deterministic shortcuts. Prefetch evaluation should measure instrument noise floor and gap distribution before live scoring, because even 2% of total queries in this study caused two scores to diverge completely.

To trust LLM judges as instruments, align engineering assumptions with measurement reliability and lock snapshot identity through temperature or seed-only metadata. Model name alone is not a stable measurement, especially in open-venue research, so treating it as one is strongly discouraged.

References

#LLM judge#measurement reliability#preregistered experiment#reproducibility#arXiv 2609.04198
Robeedau

Curated, fact-checked, and edited by a single operator before publishing.