Essay

Why do skewed class distributions make learning curves noisy, and how do balanced subsets help?

Question: When you build learning curves from small random subsamples of a dataset, the curve can look erratic if the labels are very uneven or if there are many classes. Explain the source of that instability and describe how the balanced subset approach reduces it, including how the class proportions in each subset should be chosen.

Sample answer: If small subsets are drawn at random from a dataset with a strong class skew or with many categories, each subset may contain a very different mix of labels from the full training set. That means two subsets with the same size can give the model very different training experiences, so the measured performance can jump around a lot from one subset to the next. The balanced subset approach reduces this problem by constructing each small subset so that each class appears in roughly the same proportion as it does in the complete training data. By keeping the label mix stable, the learning curve becomes much smoother and easier to interpret.

Key points:

  • Randomly sampled small subsets from skewed or many-class data can have highly variable label composition.
  • Changes in class composition create high variance in model results, which appears as noise in the learning curve.
  • Balanced subsets keep each class proportion close to the proportion in the full training set.

Rubric: To receive full credit, the answer must explain that random small subsamples from imbalanced or many-class data can differ greatly in label mix, causing noisy learning curves. It must also state that the balanced subset method addresses this by matching each class's fraction in the subset as closely as possible to its fraction in the full training set.

0

1

Updated 2026-08-12

Contributors are:

Who are from:

Tags

Machine Learning

Deep Learning

Supervised Learning

Dive into Deep Learning @ D2L

Data Science

Machine Learning Strategy

Machine Learning Yearning @ DeepLearning.AI

Related