Predict which answer a vanilla GPT-4 judge prefers: short+correct vs long+off-topic
A vanilla GPT-4 judge (no anti-length instructions) is evaluating two responses to the question: 'What year did the French Revolution begin?' Response A (short, correct): 'The French Revolution began in 1789.' Response B (long, slightly off-topic): 'The French Revolution, one of the most transformative events in European history, is generally considered to have begun in 1789 with a series of tumultuous events including the storming of the Bastille on July 14th. However, historians sometimes debate whether the seeds were planted earlier in the 1780s with the financial crisis, the Estates-General convening, and mounting social unrest. The revolution itself continued in various phases until approximately 1799 with Napoleon's rise to power. Its causes, consequences, and legacy continue to be studied by scholars worldwide.' Which response will the judge most likely prefer, and why?
The judge prefers Response B, the long one. Length bias makes RLHF-trained judges read verbosity as thoroughness, so they reward the padded answer over the short precise one.
Imagine a teacher grading two students who both got the answer right. The first writes 'The answer is 1789.' The second writes a full page about the French Revolution, the Bastille, Napoleon, and what historians still argue about. Even though both nailed the actual question, many teachers instinctively give the long answer a better grade because it LOOKS like more effort and more knowledge. An LLM judge does the same thing. It was trained on human ratings where longer, more detailed replies usually scored higher, so it learned a shortcut: more words equals better. Here that shortcut backfires. Response A is exactly correct and on point. Response B drifts off topic. But the judge, without being told to ignore length, still picks B.
Detailed answer & concept explanation~8 min readEverything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
4 min: predict Response B, explain length bias as a learned RLHF preference, separate correctness from quality, then walk the rubric, length control, and decomposition mitigations plus the leaderboard failure mode.
Real products, models, and research that use this idea.
- AlpacaEval 2.0 added length-controlled win rates in 2024 specifically to neutralize the verbosity bias this question demonstrates.
- MT-Bench and Chatbot Arena documented length bias as a core confound in LLM-judge experiments.
- RAGAS sidesteps holistic length bias by decomposing answers into atomic claims checked against retrieved context.
- LangSmith and Promptfoo evaluator templates let teams add explicit conciseness and relevance rubric dimensions to counter verbosity preference.
- Modern frontier judges like Claude Opus 4.7 and GPT-5.5 still show residual length bias unless the rubric explicitly penalizes irrelevant elaboration.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow would you experimentally confirm a judge has length bias rather than just preferring better answers?
QWhat rubric wording actually reduces length bias in practice, and what fails?
Don't say thisRed flags and common mistakes that signal junior thinking. Click to expand.
Red flags and common mistakes that signal junior thinking. Click to expand.
Assuming the judge rewards the more accurate answer. A vanilla judge optimizes perceived thoroughness, so it picks the longer reply even when the short one is more precise.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.
Same topic, related formats. Practice these next.