Papers
Topics
Authors
Recent
Search
2000 character limit reached

JudgeSense: A Benchmark for Prompt Sensitivity in LLM-as-a-Judge Systems

Published 26 Apr 2026 in cs.CL | (2604.23478v1)

Abstract: LLMs are increasingly deployed as automated judges for evaluating other models, yet the stability of their verdicts under semantically equivalent prompt paraphrases remains unmeasured. We introduce JudgeSense, a framework and benchmark for quantifying this property via the Judge Sensitivity Score (JSS), defined as the fraction of paraphrase pairs on which a judge returns an identical decision. Evaluating nine judge models on 494 validated paraphrase pairs, we find that coherence is the only task where judges meaningfully differ, with JSS ranging from 0.389 to 0.992. On factuality, all judges cluster near JSS about 0.63, driven by a polarity-inverted prompt artifact; after correction, factuality JSS rises to about 0.9. Pairwise tasks (preference and relevance) exhibit degenerate always-A behavior in 8 of 9 judges, indicating strong position bias. Model scale does not predict consistency. We release code, decision logs, and a validated paraphrase dataset to support standardized JSS reporting.

Authors (1)

Summary

  • The paper introduces the Judge Sensitivity Score (JSS) to assess decision stability when LLM judges are subjected to paraphrased prompts.
  • It reveals that prompt artifacts, particularly polarity inversion, drive significant inconsistency, impacting factuality evaluations and other tasks.
  • Empirical evaluations across nine judge models indicate that task structure and prompt design, not model scale, determine decision robustness.

JudgeSense: A Benchmark for Prompt Sensitivity in LLM-as-a-Judge Systems

Introduction and Motivation

JudgeSense addresses a critical blind spot in the reliability of LLM-as-a-judge systems: decision stability under semantically equivalent prompt paraphrasing. While previous work has shown that LLMs can achieve high agreement with human raters when acting as automated judges on tasks such as factuality or coherence (Zheng et al., 2023) [lin2022truthfulqa], these systems have not been rigorously evaluated for stability when the evaluation prompt is reworded. In large-scale benchmarking and model evaluation pipelines, seemingly trivial differences in prompt phrasing can have outsized effects on decisions, potentially undermining the reproducibility and comparability of results.

To quantify this phenomenon, the authors introduce the Judge Sensitivity Score (JSS), which measures the fraction of semantically equivalent paraphrase pairs on which a judge returns the same decision. The paper systematically evaluates nine widely used judge models across 494 validated paraphrase pairs spanning coherence, factuality, relevance, and preference tasks, providing standardized empirical evidence for prompt sensitivity and releasing a new public benchmark for future research.

Judge Sensitivity Score and Benchmark Construction

The Judge Sensitivity Score (JSS) is formally defined as the mean agreement rate on a set of (prompt-paraphrase, evaluation item) pairs:

JSS(j,t)=1∣P∣∑i=1∣P∣δ(j(pi),j(pi′)),\mathrm{JSS}(j, t) = \frac{1}{|P|} \sum_{i=1}^{|P|} \delta(j(p_i), j(p'_i)),

where jj is the judge model, tt the task, PP the set of paraphrase pairs, and δ()\delta() the indicator of label equality.

JSS is bounded in [0,1][0,1], with lower values indicating higher prompt-induced instability. The authors argue for a practical reliability threshold at JSS~<0.8<0.8, i.e., more than one in five decisions flip under rephrasing.

Dataset Construction: The benchmark is built from established evaluation datasets: TruthfulQA (factuality), SummEval (coherence), BEIR (relevance), and MT-Bench (preference). Each task is associated with five minimalist, instruction-only prompt variants. The paraphrase equivalence of each pair is verified by an independent strong classifier. After exclusion of six non-equivalent factuality pairs, 494 pairs remain, covering both binary and Likert-scale labeling tasks.

Evaluation Protocol: Nine judges (five commercial—GPT-4o, GPT-4o-mini, Claude Sonnet/Haiku 4.5, Gemini 2.5-Flash; four open-source—Llama-3.1-70B, Mistral-7B, Qwen-2.5-72B, DeepSeek-R1) are evaluated using strictly greedy decoding. Outputs are normalized for structured answer parsing; error and exclusion rates are logged and reported.

Empirical Results and Analysis

Core JSS Results Across Judges and Tasks

The results surface several critical findings:

  • Coherence is the only task where judges meaningfully differ: JSS ranges from 0.389 (Gemini-2.5-Flash) to 0.992 (Claude-Sonnet-4-5). No other task shows similar spread. Figure 1

    Figure 1: Coherence JSS by judge model. Error bars show 95% bootstrap confidence intervals.

  • On factuality, all judges, regardless of architecture or scale, cluster near JSS ≈ 0.63 (i.e., a ∼\sim37% flip rate). This apparent inconsistency is traced to a polarity-inverted prompt template, not model defects. Figure 2

    Figure 2: JSS across evaluation dimensions. Factuality values shown are raw (uncorrected). Hatched cells indicate degenerate always-A behavior.

  • After correcting for polarity inversion, factuality JSS rises to ≈0.9+ for all models, highlighting that the observed instability is a prompt design artifact. Figure 3

    Figure 3: Effect of polarity-inverted template on factuality JSS. Raw values underestimate judge consistency due to polarity mismatch; corrected values reflect underlying agreement.

  • Pairwise preference and relevance tasks are dominated by "always-A" degenerate behavior in 8 out of 9 judges: the models output "A" for all pairs, making JSS uninformative in the absence of option-order randomization. Only Mistral-7B departs from this pattern, yielding a chance-level flip rate.

Detailed Empirical Claims

  • Model scale does not predict consistency. The largest models are not always the most stable; for instance, Gemini-2.5-Flash demonstrates the worst coherence JSS while mid-scale models (Claude-Sonnet-4-5, Qwen-2.5-72B) excel.
  • Task structure affects the detectability of instability. Likert-scale tasks (coherence) surface more prompt-induced flips than binary decision tasks because the answer space is richer.
  • Polarity inversion in prompts drives artifactual disagreement. The polarity-inverted template in factuality evaluation is responsible for nearly all observed inconsistency; correcting for this effect yields high JSS across all models.
  • Negative Cohen's κ\kappa scores for some models on coherence tasks suggest systematic anti-correlation, i.e., models responding with opposite labels under different paraphrases.

Practical Implications and Recommendations

The findings have urgent implications for the use and reporting of LLM-as-a-judge systems:

  • For researchers and practitioners: JSS should be reported alongside traditional human agreement scores in any evaluation pipeline; high human agreement is insufficient if judge decisions are unstable under paraphrase.
  • Judge selection: Model size or vendor is an unreliable proxy for prompt sensitivity. Coherence JSS is a practical discriminator. Claude-Sonnet-4-5, Qwen-2.5-72B, and GPT-4o (all JSS >0.9>0.9) are recommended for robust judging; models with JSS jj0 are unsuitable for settings in which prompt variation is unavoidable.
  • Prompt design: Avoid polarity-inverting templates unless normalization is performed post hoc. Practitioners designing factuality prompts should ensure polarity consistency.
  • Pairwise tasks: Option-order randomization is necessary before JSS is informative for relevance and preference tasks due to strong position biases.

Theoretical and Methodological Implications

JudgeSense reframes LLM-as-a-judge reliability: self-agreement under prompt paraphrasing is independent of human agreement, and is essential for reproducibility. The study establishes that much apparent variation in factuality tasks is primarily attributable to prompt artifacts, not model architecture or training. This rebuts any presumption that more advanced or larger models are inherently more stable as judges (Grattafiori et al., 2024, OpenAI et al., 2023, Qwen et al., 2024, Team et al., 2023, DeepSeek-AI et al., 22 Jan 2025).

The benchmark also makes a case for reporting distributional and multi-paraphrase metrics rather than single-prompt outcomes (Zhuo et al., 2024, Sclar et al., 2023, Thakur et al., 2024), and motivates the use of scaled or multiclass verdict spaces (like Likert) to better surface instability.

Future extensions to JudgeSense might include: randomized option-order to disentangle position bias from true insensitivity in pairwise labeling (Shi et al., 2024); multilingual paraphrase sets to examine language effects; and fine-tuning for paraphrase invariance during instruction tuning.

Conclusion

JudgeSense provides the first formal, standardized metric—Judge Sensitivity Score—for measuring the stability of LLM-as-a-judge decisions under semantically equivalent prompt paraphrasing. The results demonstrate that prompt formulation, not model scale or architecture, is often the dominant cause of observed instability. The released benchmark dataset and codebase should serve as a foundation for reporting and improving judge reliability in automated evaluation pipelines.

Researchers are encouraged to adopt JSS as a standard reporting metric and to prioritize prompt-invariant judging in both academic and production settings. Systematic mitigation of prompt-based artifacts—by both engineering (prompt normalization, template curation) and methodological (randomization, multi-template evaluation) means—is now essential for credible LLM-as-a-judge practice.

References:

(2604.23478, Zheng et al., 2023, Sclar et al., 2023, Zhuo et al., 2024, Thakur et al., 2024, Qwen et al., 2024, Team et al., 2023, DeepSeek-AI et al., 22 Jan 2025, Grattafiori et al., 2024, Shi et al., 2024, OpenAI et al., 2023).


Conclusion

JudgeSense establishes the necessity of prompt-paraphrase sensitivity benchmarking for LLM-as-a-judge systems and proposes JSS as a transparent, actionable metric with immediate applicability. The supporting empirical analysis shows prompt artifacts, not model differences, are the major source of unreliability in factuality judgments, while coherence evaluation best exposes model-dependent instability. System design and reporting practices must now incorporate these findings to ensure robust and reproducible benchmark results in the era of LLM-automated evaluation.

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

No one has generated a whiteboard explanation for this paper yet.

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.

Tweets

Sign up for free to view the 1 tweet with 1 like about this paper.