A child sees a few dogs and soon recognizes dogs she's never met. A spam filter sees some labeled emails and starts catching new spam. In both cases, a rule is being learned from examples — and then applied to unseen cases. The deep question is: how many examples does that take, and when is it even possible?
Memorizing the examples is no answer: it nails the training cases and fails on everything new — the classic trap of overfitting. Real learning means generalizing: capturing the underlying rule, not the specific samples.
PAC learning — Probably Approximately Correct, introduced by Leslie Valiant in 1984 — is the theory that makes this precise. It asks for a hypothesis that is, with high probability, approximately correct on future data, and studies how many samples and how much computation that requires. It's the mathematical backbone of machine learning — and it draws a sharp line between what can be learned efficiently and what can't.
Comments
Loading comments...