Using Target-Distribution Samples to Guide Training Decisions
Case context: A team is building a transcribed-note classifier for a hospital. They have 300,000 generic voice notes from other departments and 18,000 cardiology notes, which match the deployment setting. They reserve 6,000 cardiology notes for dev/test. The remaining 12,000 cardiology notes are mixed with the large generic set for training. During training, they track performance on the cardiology examples in the training set and on a separate cardiology development set.
Question: If the model scores well on the cardiology examples included in training but much worse on the cardiology development set, what is the most likely diagnosis, and what should the team do next?
Sample answer: That pattern suggests the model has memorized the limited cardiology examples it saw during training rather than learning patterns that transfer to new cardiology notes. The result supports the idea that the project is constrained by too little data from the target distribution. The next step is to gather more cardiology notes so the training set better matches the deployment distribution.
Key points:
- The gap indicates overfitting to the target-distribution training examples.
- The data signal says the real bottleneck is insufficient target-distribution data.
- The practical response is to collect more examples from the same distribution as dev/test.
Rubric: The response must identify overfitting to the limited target-distribution training data and recommend collecting more data from that distribution.
0
1
Tags
Machine Learning
Deep Learning
Supervised Learning
Dive into Deep Learning @ D2L
Data Science
Machine Learning Strategy
Machine Learning Yearning @ DeepLearning.AI
Related
Testing a Data-Mismatch Hypothesis on a Shared Subset
A wildlife classifier has 8,000 camera-trap photos from reserve staff and 160,000 unrelated web photos. How should the reserve photos be used?
Combining In-Domain and Auxiliary Examples During Training
Adding target-distribution examples to training means the training set now includes data from the _____ distribution.
Match the training-set components with their distribution role in a model built for a specific target domain.
Order the steps for allocating product-review data between target and auxiliary sources.
Why can it help to include some target-distribution audio in both the training set and the training-dev set?
True or False: It can still be worthwhile to train on a dataset that comes from a different distribution than the dev/test set.
Strong results on source examples but weak results on deployment examples validate the hypothesis that more _____ data would help.
Match each training choice for a voice-command system to its likely effect.
Order the steps for training a defect classifier with mixed data sources.
Why Include a Small Amount of Target-Distribution Data in Training?
Using Target-Distribution Samples to Guide Training Decisions
Checking Whether More Same-Distribution Data Would Help