Why do anchor examples in an LLM judge prompt dramatically reduce score variance?
Anchor examples pin each score level to a concrete reference, so the judge stops interpreting the scale idiosyncratically. That alignment substantially reduces inter-run and inter-judge variance.
Imagine grading essays without a rubric. One teacher's 4 out of 5 is another teacher's 3, because nobody agreed on what each number means. Now imagine each teacher is handed a sample essay already marked 3, another marked 4, and another marked 5. Suddenly everyone grades the same essay almost the same way, because they all calibrate against the same examples. Anchor examples do exactly that for an LLM judge: one worked example per score level tells the model concretely what a 3 looks like versus a 4. The judge stops guessing where the boundaries sit and starts matching against shared references. The catch: if your anchors are lopsided, say only high-quality examples, you nudge the judge to score everything high. Balanced anchors fix the variance without quietly biasing the average.
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: why bare scales drift, how anchors calibrate by shared reference, the substantial variance drop, the mean-shift bias trap, balanced anchors plus blind scoring plus kappa validation.
Real products, models, and research that use this idea.
- G-Eval style judge prompts include scored exemplars per dimension, which is the canonical anchored-rubric pattern used across eval stacks in 2026.
- LangSmith and Braintrust let you attach few-shot scored examples to a judge so the rubric is anchored rather than abstract.
- RAGAS rubric prompts pin faithfulness and relevance levels to concrete passages instead of leaving 1 to 5 undefined.
- Prometheus 2 is trained on rubric plus reference answer prompts, baking anchoring into the judge model itself.
- Promptfoo surfaces per-run score variance, which teams watch before and after adding anchors to confirm the variance drop.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow would you detect that your anchor examples are biasing the judge's mean rather than just reducing variance?
QWhere in the score range should you place your most carefully chosen anchors, and why?
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 any anchor helps. Skewed anchors (all high-quality examples) calibrate the judge but anchor the mean upward, trading variance for a hidden bias you never measure.
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.