Why can a training curve wobble when the sample size is very small?
Question: Give a brief analytical explanation of why learning-curve measurements can vary a lot when each training run uses only a small fraction of the data. Include the roles of random sampling, noisy or ambiguous labels, uneven class frequencies, and problems caused by having many categories.
Sample answer: When the training subset is tiny, each run may draw a different mix of examples, so the subset can be a poor stand-in for the full dataset. Some draws will accidentally include more confusing or incorrectly labeled items, which can raise the measured error, while other draws will be cleaner and make performance look unusually good. If the data are strongly imbalanced, a small draw may miss rare classes or include too few of them to train well. The same issue becomes even stronger when the task has many classes, because a small sample is less likely to cover all of them adequately. As a result, training and development scores can move up and down a lot at low sample sizes.
Key points:
- Tiny random samples may not reflect the whole dataset
- Noisy or ambiguous records can make one sample look especially weak
- A cleaner sample can make results look better than usual
- Uneven class frequencies make rare classes easier to miss
- A large label set increases the chance that important categories are underrepresented
Rubric: A strong answer connects small sample size to unstable error estimates, describes both unusually strong and unusually weak draws, and explains why imbalance or many classes make representativeness worse. Full credit requires an explanation that stays faithful to those facts.
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
Averaging Errors from Several Small Training Samples
Balanced Small Samples Help Learning Curves Stay Stable on Imbalanced or Multi-Class Data
Why can a learning-curve value jump around when it is measured on a tiny random training sample?
A tiny random training sample can make the measured learning-curve error swing noticeably up or down.
A tiny sample with many unclear or incorrect labels is unusually _____.
Match each small-sample condition to its effect on a learning-curve estimate.
Put the checks in a sensible order for explaining a strange value on a tiny sample.
Why can a training curve wobble when the sample size is very small?
Explain a spike caused by a tiny imbalanced sample.
Why can learning-curve values be especially erratic for very small training samples?
Which situation makes a tiny random sample least likely to represent the full dataset?
A very small random sample is less likely to be misleading when the number of classes is large.