Structural risk minimization (SRM), introduced by Vapnik, provides a principled algorithm for model selection by balancing approximation and estimation error. Given a nested sequence of hypothesis classes H_1 subset H_2 subset ... with increasing VC dimensions d_1 < d_2 < ..., SRM selects the class that minimizes the sum of empirical risk and a complexity penalty proportional to sqrt(d_k/n). This automates the bias-complexity tradeoff: it avoids underfitting (too simple a class) and overfitting (too complex a class) by penalizing complexity exactly as learning theory prescribes.
The bias-complexity tradeoff tells you that the ideal hypothesis class balances approximation error (too simple misses the target) against estimation error (too complex leads to overfitting with finite data). But how do you actually choose the right class in practice? Structural risk minimization provides the answer: a principled algorithm that selects among a hierarchy of classes by minimizing an upper bound on the total risk.
The setup requires organizing hypothesis classes into a nested sequence: H_1 subset H_2 subset H_3 subset ..., where each successive class is more expressive (larger VC dimension). For polynomial classifiers, this might be degree-1 (linear), degree-2 (quadratic), degree-3, and so on. For neural networks, it might be networks with 1, 2, 4, 8, ... hidden units. The nesting ensures that approximation error decreases (or stays the same) along the sequence, while VC dimension and therefore estimation error increase.
SRM evaluates each class H_k by computing the SRM bound: the empirical risk (training error of the ERM hypothesis in H_k) plus a complexity penalty derived from the VC dimension d_k. The standard penalty takes the form sqrt((d_k * log(n/d_k) + log(1/delta)) / n), which grows with d_k and shrinks with n. SRM selects the class k* that minimizes this bound. When n is small, the penalty dominates and SRM prefers simple classes; when n is large, the penalty shrinks and SRM can afford to select more complex classes. The procedure automatically adapts to the available data without requiring a held-out validation set.
The theoretical guarantee is powerful: the risk of the SRM-selected hypothesis is at most a constant times the best risk achievable by the optimal class in the hierarchy, plus lower-order terms. This means SRM performs nearly as well as an oracle that knows which class is best — it is adaptive without being told the target's complexity. In practice, SRM inspired regularization-based methods (which can be viewed as continuous relaxations of the discrete class selection) and model selection criteria like the Structural Risk Minimization principle underlying SVMs, where the margin parameter implicitly controls the effective VC dimension along a nested hierarchy of separators.
No topics depend on this one yet.