# LLM-as-Judge Evaluation Status: public Confidence: medium (0.82) (verified) Last verified: 2026-06-02 Generation: ai_structured ## TL;DR LLM-as-judge evaluation uses a model to score, compare, or critique model outputs, usually as a faster complement to human preference data and task-specific metrics. ## Core Explanation LLM judges are useful when outputs are open-ended and exact-match metrics are too brittle. They can compare two answers, score an answer against a rubric, or explain a failure mode. Their output should still be treated as a measurement instrument, not as ground truth. Good judge pipelines randomize answer order, separate rubrics from examples, measure judge agreement with humans or gold labels, and inspect failures where the judge rewards verbosity, style, or familiar model behavior over correctness. ## Source-Mapped Facts - The G-Eval paper studies natural-language generation evaluation using GPT-4 with chain-of-thought style evaluation steps and form-filling. ([source](https://arxiv.org/abs/2303.16634)) - The MT-Bench and Chatbot Arena paper introduces MT-Bench as a multi-turn question set and Chatbot Arena as a crowdsourced battle platform. ([source](https://arxiv.org/abs/2306.05685)) - The MT-Bench and Chatbot Arena paper evaluates agreement between LLM judges and human preferences. ([source](https://arxiv.org/abs/2306.05685)) - The Chatbot Arena paper describes an open platform for evaluating LLMs using human preference comparisons. ([source](https://arxiv.org/abs/2403.04132)) ## Further Reading - [G-Eval](https://arxiv.org/abs/2303.16634) - [Judging LLM-as-a-Judge With MT-Bench and Chatbot Arena](https://arxiv.org/abs/2306.05685) - [Chatbot Arena](https://arxiv.org/abs/2403.04132)