Learning Paradigms

active learning

/ AK-tiv LER-ning /

A smart student doesn't ask the teacher to re-explain things they already get; they raise their hand precisely on the points that confuse them. That focused questioning is the heart of active learning: instead of labeling data at random, the model itself chooses which unlabeled examples would teach it the most, and asks a human to label just those.

The motivation is cost. Labeling is the expensive part of machine learning — paying experts to mark up scans, transcribe audio, or judge text. Most examples in a big unlabeled pool are easy and redundant; labeling them teaches the model little. Active learning runs in a loop: train on what you have, scan the unlabeled pool, pick the examples the model is most uncertain about (or that would most change its mind), send those to a human, add the new labels, and repeat. By spending the labeling budget where it counts, you can reach the same accuracy with far fewer labeled examples.

It is genuinely useful whenever unlabeled data is plentiful but labeling is slow or costly. The honest caveats: chasing the model's most uncertain points can skew the labeled set toward weird edge cases and miss the ordinary bulk, and the model's idea of "uncertain" is only as good as the model itself — early on, it may be confidently wrong about what it doesn't know. It also needs a human in the loop, which limits how far it scales.

A team must label 100,000 product photos but can afford only 5,000. They train on a small seed set, then let the model flag the 5,000 photos it is least sure about — odd angles, blurry shots, ambiguous categories. Labeling those targeted cases yields a far better model than labeling 5,000 photos picked at random.

Spend the labeling budget on the examples that teach the most.

The model's sense of "what's uncertain" is only as trustworthy as the model itself — early on it can be confidently wrong, and over-chasing edge cases can skew the labeled set away from the common case.

Also called
query learning主动学习主動學習