Bernstein Bounds and Fast Rates
A sharper version of Hoeffding's concentration inequality that uses the actual variance of your data, not just its range, letting learning-theory guarantees converge much faster when the noise is small.
Hoeffding's inequality bounds how far a sample average can be from its true mean using only the range of the data — it doesn't care whether your observations are tightly clustered or wildly spread out within that range, which throws away useful information. Bernstein's inequality fixes this by also using the variance of the underlying random variable, and the payoff is large: when the true variance is small, Bernstein bounds shrink much faster than Hoeffding's as you add data — a "fast rate" instead of the generic "slow rate."
Concretely, for i.i.d. bounded observations with variance and range bound , Bernstein's inequality gives, with high probability:
In plain English: the first term behaves like the usual shrinkage but scaled by the actual variance instead of the worst-case range, and the second term is a smaller correction that shrinks faster, at rate . When is small relative to (low-noise settings, like a classifier that's usually confident and correct), the first term is tiny and the bound tightens dramatically faster than Hoeffding's generic bound would predict.
This is why learning-theory results for well-separated classification problems or low-noise regression can prove convergence rates faster than the classical — the "fast rates" literature — by plugging problem-specific variance bounds into a Bernstein-type inequality instead of a range-only one.
Bernstein's inequality uses the true variance of your data, not just its range, giving tighter concentration bounds than Hoeffding's whenever the noise is genuinely small. This variance-aware sharpening is the technical engine behind "fast rate" generalization bounds in low-noise learning problems.
Related concepts
Further reading
- Boucheron, Lugosi & Massart, Concentration Inequalities, ch. 2