prompt-eng
Glossary ↗Golden Dataset
A golden dataset is a curated, version-controlled set of representative inputs paired with known-good expected outputs (or acceptance criteria), used to test an AI feature the way unit tests guard normal code. It's the missing piece that turns 'the demo looked fine' into an actual regression check: before you change a prompt, swap a model, or upgrade a provider, you run the new configuration against the golden set and compare scores. Cases should mirror production — including the messy edge cases, adversarial inputs, and known failure modes you've hit — not just happy-path examples. For builders, this is the single highest-leverage habit for shipping reliable AI: start with 20–50 hand-labeled cases, grow it by promoting real failures into permanent test cases, and score with exact match, assertions, or an LLM judge. Caveats: keep it out of any training or few-shot context to avoid contamination, review labels periodically (your definition of 'good' drifts), and remember a small biased set gives false confidence.
Related terms