Zenaique

You are building a golden dataset with three annotators. Someone warns you about inter annotator agreement. What is it and what goes wrong if you skip measuring it?

Flashcard·Easy·4.0 · 0·~30s·Asked atGraphcoreLinkedinStability Ai·Relevant atAnthropic
Attempt it
TL;DR

Inter-annotator agreement measures how consistently multiple raters label the same items, revealing whether your evaluation labels are reliable enough to trust.

Memory aid
Sign in to see the mnemonic that makes this stick.
Easy to grasp

Imagine three teachers grading the same stack of essays. If they all give similar grades, you can trust the grades to mean something. But if teacher A gives a B+ while teacher B gives a D and teacher C gives an A, the grades are useless because the teachers do not agree on what good writing looks like. Inter-annotator agreement is the number that tells you whether your graders are on the same page. You measure it before using the grades for anything important. If the number is low, you fix the grading rubric (make the instructions clearer) and try again. If you skip this check, you might blame the student for bad writing when the real problem is that the teachers cannot agree.

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.

When you build a golden dataset, the quality of the labels determines the quality of every evaluation that uses them. Inter-annotator agreement is the measurement that tells you whether your labels are trustworthy.

This walkthrough covers what IAA is, why it matters, how to measure it, and what to do when it is low.

What IAA measures and why it matters

Inter-annotator agreement quantifies how often multiple raters assign the same label to the same item. If three annotators rate 100 model outputs and agree on 90 of them, agreement is high. If they agree on only 55, something is wrong with the labeling process.

The reason IAA matters is that evaluation scores are only as reliable as the labels they are computed against. If your golden dataset has noisy labels (annotators disagreed but you picked one label arbitrarily), the model's score includes that noise. A 5% improvement in model quality might be invisible in a dataset with 20% label noise. Conversely, a 3% regression might appear as an improvement if the noisy labels happened to align favorably.

Measuring IAA before using labels for evaluation lets you diagnose and fix reliability problems at the source. It is cheaper to fix a rubric than to debug a mysterious eval score six months later.

Why kappa beats raw percentage agreement
Three causes of low IAA and how to fix each
The pilot then scale workflow
Sign in to unlock the full deep dive.

Situations where this technique stops working.

Sign in to see when this approach fails.

2–4 min · Everything important, quickly.

Sign in to see the quick scan of the deep dive.

Real products, models, and research that use this idea.

  • Scale AI measures inter-annotator agreement as a standard quality metric for every annotation project, flagging batches where kappa drops below threshold for rubric revision.
  • Chatbot Arena sidesteps the IAA problem by collecting pairwise preferences from thousands of users, where the volume compensates for individual disagreement.
Sign in to see more production examples.

What an interviewer would ask next. Try answering before peeking at the approach.

QWhat is the difference between Cohen's kappa and Fleiss' kappa, and when do you use each?
A

Cohen's kappa works for exactly two raters on the same items. Fleiss' kappa generalizes to three or more raters, allowing different subsets of raters to label different items. Use Cohen's when you have a fixed pair of annotators; use Fleiss' when you have a pool of annotators and each item is rated by a subset.

1 more follow-up an interviewer would ask next. Sign in to reveal them.

Red flags & common mistakes

The phrases that signal junior thinking. Click to expand.

Most common mistake

Using raw percentage agreement instead of kappa. Two raters can agree 90% of the time by chance alone if one class dominates, making raw agreement misleadingly high.

Sign in to see all red flags and common mistakes.

60 second bullets to scan on the way to the call.

  • Define inter-annotator agreement as a measure of label consistency across raters

  • Explain why skipping IAA measurement makes evaluation scores uninterpretable

Sign in to unlock the revision sheet.

Primary sources. Browse if you want the original framing.

Similar questions

Same topic, related formats. Practice these next.

4 curated
Next question
Which metric best measures whether a RAG answer is grounded in the retrieved context?
MCQ·Medium