Beyond Scores: Understanding LLM-as-a-Judge Mechanisms in Summarization Evaluation
Original paper: *Beyond Scores: Understanding LLM-as-a-Judge Mechanisms in Summarization Evaluation* Authors: Himil Vasava, Ming Jiang Categories: cs.CL, cs.LG
*Daily paper recommendation — September 3, 2026 (zhichai.net forum post, translated and adapted)*
Background: The Black-Box Judge Problem
LLM-as-a-Judge systems now permeate NLP evaluation: large language models score summaries, rank generations, and supply training signals. But when a judge model outputs "7.5," what actually happens inside? If the AI judging other AIs is a black box, how can we trust its verdicts—or the "taste" of models trained on its signals?
This paper applies mechanistic interpretability as an X-ray machine for judge models, asking what internal circuits produce summarization scores.
Methods
- Evaluation dimensions: readability (fluency, grammar) and adequacy (faithfulness, completeness).
- Eight-type perturbation taxonomy to create clean vs. polluted summary pairs: lexical substitution, grammar corruption, information omission, information addition (hallucination), redundancy inflation, event-order shuffling, ambiguous coreference, and style drift.
- Models studied: Themis (Llama-3-8B based), Prometheus (Mistral-7B based), plus untuned Llama-3-8B as a control to test whether judging ability is innate or fine-tuned.
- Techniques: logit lens, causal tracing, and attention head knockout.
- Stage 1 (layers ~1–15): attention heads scan back and forth between candidate and reference summaries, routing local comparison signals to the final position. MLP contributions are suppressed in this phase.
- Stage 2 (above layer ~15): MLP layers dominate, integrating attention signals like "small judges" voting toward consensus. The decision crystallizes at a specific layer—layer 26 for Themis, layer 25 for Prometheus. Perturbations after this point barely change the score.
- Some heads specialize in readability detection; others in adequacy detection; others act as information relays.
- Heads near the crystallization layers (25–26) are critical—knocking them out collapses judging ability, while early-layer knockouts are buffered by redundant paths.
- Some heads appear to perform safety checks: removing them makes the model notably more vulnerable to subtle adversarial substitutions—a potential attack surface.
- Evaluation is structure: judging ability is a concrete, inspectable circuit—not mysterious emergence—so it can be understood, improved, and repaired.
- Bias is localizable: style bias, systematic misjudgment, or premature crystallization can be traced to specific components.
- Safer systems: understanding internal mechanisms enables adversarial detection, judgment verification, and multi-judge designs partitioned by evaluation dimension.
- Efficient fine-tuning: since base models already contain a judging scaffold, fine-tuning should refine rather than construct from scratch.
- Vasava, H., & Jiang, M. (2026). *Beyond Scores: Understanding LLM-as-a-Judge Mechanisms in Summarization Evaluation*. arXiv preprint.
- Meng, Y., et al. (2022). *Locating and Editing Factual Associations in GPT*. NeurIPS.
- Nanda, N., et al. (2023). Transformer Circuits Thread. Anthropic.
- Zou, A., et al. (2023). *Representation Engineering: A Top-Down Approach to AI Transparency*. arXiv preprint.
Key Findings
1. A two-stage pipeline
2. Fine-tuning sculpts rather than builds
The untuned base model shows a similar two-stage structure, but without clean stage separation (lower MLPs still participate at the end) and with later crystallization. Fine-tuning acts like a sculptor's chisel: it suppresses lower-MLP interference and moves decision crystallization earlier.
3. Specialized attention heads
4. Logit lens reveals the model's "inner monologue"
Early layers produce noisy predictions; mid layers surface quality-related tokens ("good," "clear," "accurate"); near crystallization, numeric tokens ("8," "9") spike; after crystallization the output is effectively fixed.
Implications
Conclusion
The study marks a shift from blind trust to *informed trust* in LLM judges. Transparency about how a judge forms its verdict is a prerequisite for responsibly using AI to evaluate AI—an opaque judge is itself unfair to the judged.