Pick the statement that best describes a scoring rubric in LLM evaluation.
A scoring rubric defines explicit criteria for each score level, ideally with anchor examples, so different judges produce consistent evaluations instead of arbitrary numbers.
Imagine you and a friend are both judging a sandcastle competition. Without any rules, you might give a castle a 4 because it is tall, while your friend gives it a 4 because it is detailed. Your 4s mean different things. A rubric fixes this. It says: '5 means the castle has multiple towers, a moat, and fine detail work. 3 means it has basic shape but no detail. 1 means it collapsed.' Now when either of you gives a 4, it means the same thing. In LLM evaluation, a scoring rubric does the same job: it tells the judge (human or AI) exactly what each score level looks like, so everyone grades on the same scale.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
A scoring rubric seems like a simple concept: define what each score means. But in LLM evaluation, where judges are language models that take instructions literally and where small prompt changes shift scores by double digits, the rubric is one of the most consequential design decisions in the pipeline.
This deep dive covers what a rubric contains, why anchor examples matter so much, how rubrics integrate with LLM-as-judge workflows, and the versioning discipline that keeps evaluation signals trustworthy.
What a scoring rubric contains
A scoring rubric has three layers, each adding more structure to the judge's task.
The first layer names the evaluation dimensions. Instead of a vague 'rate quality,' the rubric specifies: evaluate accuracy, completeness, and tone as separate dimensions. This prevents the judge from collapsing distinct qualities into one blurred score.
The second layer defines score levels for each dimension. For a 1 to 5 scale, the rubric states what a 1 means, what a 3 means, and what a 5 means. The criteria should be observable and concrete: '1 = the response contains a factual error that contradicts the source. 3 = the response is factually correct but omits a key point. 5 = the response is factually correct, complete, and well-organized.'
The third layer provides anchor examples: concrete model outputs that illustrate each score level. The judge reads an example of a 1, a 3, and a 5 before evaluating the actual output. Anchors reduce interpretation variance because the judge has a shared reference point rather than an abstract description.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
Real products, models, and research that use this idea.
- MT-Bench defines a 1 to 10 scoring rubric that instructs the LLM judge on what constitutes a low, medium, and high-quality multi-turn response.
- Promptfoo lets teams define custom rubrics per evaluation dimension, with criteria and optional anchor examples embedded in the eval prompt template.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow many anchor examples per score level produce the best judge consistency?
Research suggests 2 to 3 anchors per level is the sweet spot. One anchor may be idiosyncratic. More than 3 crowds the prompt and may confuse the judge. Test with your calibration set to find the right number for your domain.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Asking a judge to 'rate quality from 1 to 5' without defining what each score means. Without a rubric, scores are arbitrary and inconsistent across judges.
60 second bullets to scan on the way to the call.
Define a scoring rubric as explicit criteria for each score level
Explain why rubrics make evaluation consistent across different judges
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.