Training data
Synonyms: training set, model data, learning data, ground-truth data, source data
Definition
Use cases
- Skewed data, skewed output: A resume-screening feature favors one group because the historical data it learned from did. Nobody set out to discriminate, but the data carried the pattern forward.
- Overpromised capability: A team markets a feature as working "in any language" when the model was trained mostly on three. The first user outside those three gets a broken experience.
How it's used in practice
- Map inputs to known coverage: List the languages, regions, and edge cases your real users bring. Where the data is thin, treat that as a UI risk and plan a fallback.
- Capture real usage: Add rating, edit, and report controls so live interactions feed back into future training and close the gaps you find.
- Document data limits in handoff: Write down what the model was trained on and where it's weak, so engineering and legal can review before launch.
- Design out-of-distribution states: Build clear screens for inputs the model wasn't trained on, instead of letting it produce a confident wrong answer.
Challenges & limitations
- You often can't see it: With closed models, the training data is hidden, so you infer gaps from testing rather than reading a manifest.
- Data drifts: A set that matched your users last year may not now. Behavior, slang, and products change, so coverage decays unless the data is refreshed.
- Bias and provenance are hard to audit: Tracing where data came from, what licenses apply, and what bias it carries takes real effort and creates legal and ethical risk.
Free resources
- Google Data Cards Playbook — templates and guidance for - documenting datasets so teams know what they're working with.
- Google PAIR People + AI Guidebook — patterns for designing AI features, including how data shapes the user experience.

