The golden dataset is your ground truth
A "golden" dataset is one where each input is paired with a reference output that has been blessed by humans — domain experts, annotators, or product owners. It is the reference frame your graders compare against. Building one is slow, expensive, and irreplaceable.
What makes a dataset 'golden'
- Verified references — at least two independent humans agreed on the correct output. Single-annotator references inherit one person's biases.
- Edge case coverage — not just easy cases. Long inputs, adversarial inputs, cross-language inputs, format-shifting inputs.
- Versioning — the dataset is checked into git (or a dataset platform) so you can tell when, why, and by whom each case changed.
- Provenance — for each case, you know where it came from (production log, expert, synthetic) and can defend its inclusion.
Inter-annotator agreement matters
If two annotators disagree on the "correct" answer for 30% of cases, your golden dataset is not golden — it is a measurement of human disagreement. Compute Cohen's kappa or Krippendorff's alpha. If agreement is below ~0.7, your task definition is too vague; rewrite the rubric before continuing to label.
Beware leakage
If your golden set was used to fine-tune the model you are evaluating, your eval is meaningless — the model has memorized the answers. Always hold out a portion of the dataset that never touches training. This is harder than it sounds when teams casually pass datasets around.