Neha Patil (Editor)

Regularization perspectives on support vector machines

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Regularization perspectives on support vector machines

Regularization perspectives on support vector machines provide a way of interpreting support vector machines (SVMs) in the context of other machine learning algorithms. SVM algorithms categorize multidimensional data, with the goal of fitting the training set data well, but also avoiding overfitting, so that the solution generalizes to new data points. Regularization algorithms also aim to fit training set data and avoid overfitting. They do this by choosing a fitting function that has low error on the training set, but also is not too complicated, where complicated functions are functions with high norms in some function space. Specifically, Tikhonov regularization algorithms choose a function that minimize the sum of training set error plus the function's norm. The training set error can be calculated with different loss functions. For example, regularized least squares is a special case of Tikhonov regularization using the squared error loss as the loss function.

Contents

Regularization perspectives on support vector machines interpret SVM as a special case Tikhonov regularization, specifically Tikhonov regularization with the hinge loss for a loss function. This provides a theoretical framework with which to analyze SVM algorithms and compare them to other algorithms with the same goals: to generalize without overfitting. SVM was first proposed in 1995 by Corinna Cortes and Vladimir Vapnik, and framed geometrically as a method for finding hyperplanes that can separate multidimensional data into two categories. This traditional geometric interpretation of SVMs provides useful intuition about how SVMs work, but is difficult to relate to other machine learning techniques for avoiding overfitting like regularization, early stopping, sparsity and Bayesian inference. However, once it was discovered that SVM is also a special case of Tikhonov regularization, regularization perspectives on SVM provided the theory necessary to fit SVM within a broader class of algorithms. This has enabled detailed comparisons between SVM and other forms of Tikhonov regularization, and theoretical grounding for why it is beneficial to use SVM's loss function, the hinge loss.

Theoretical background

In the statistical learning theory framework, an algorithm is a strategy for choosing a function f : X Y given a training set S = { ( x 1 , y 1 ) , , ( x n , y n ) } of inputs, x i , and their labels, y i (the labels are usually ± 1 ). Regularization strategies avoid overfitting by choosing a function that fits the data, but is not too complex. Specifically:

f = arg min f H { 1 n i = 1 n V ( y i , f ( x i ) ) + λ | | f | | H 2 } ,

where H is a hypothesis space of functions, V : Y × Y R is the loss function, | | | | H is a norm on the hypothesis space of functions, and λ R is the regularization parameter.

When H is a reproducing kernel Hilbert space, there exists a kernel function K : X × X R that can be written as an n × n symmetric positive definite matrix K . By the representer theorem, f ( x i ) = f = 1 n c j K i j , and | | f | | H 2 = f , f H = i = 1 n j = 1 n c i c j K ( x i , x j ) = c T K c

The simplest and most intuitive loss function for categorization is the misclassification loss, or 0-1 loss, which is 0 if f ( x i ) = y i and 1 if f ( x i ) y i , i.e. the Heaviside step function on y i f ( x i ) . However, this loss function is not convex, which makes the regularization problem very difficult to minimize computationally. Therefore, we look for convex substitutes for the 0-1 loss. The hinge loss, V ( y i , f ( x i ) ) = ( 1 y f ( x ) ) + where ( s ) + = m a x ( s , 0 ) , provides such a convex relaxation. In fact, the hinge loss is the tightest convex upper bound to the 0-1 misclassification loss function, and with infinite data returns the Bayes optimal solution:

f b ( x ) = { 1 p ( 1 | x ) > p ( 1 | x ) 1 p ( 1 | x ) < p ( 1 | x )

Derivation

The Tikhonov regularization problem can be shown to be equivalent to traditional formulations of SVM by expressing it in terms of the hinge loss. With the hinge loss,

V ( y i , f ( x i ) ) = ( 1 y f ( x ) ) +

where ( s ) + = m a x ( s , 0 ) , the regularization problem becomes

f = arg min f H { 1 n i = 1 n ( 1 y f ( x ) ) + + λ | | f | | H 2 } .

Multiplying by 1 / ( 2 λ ) yields

f = arg min f H { C i = 1 n ( 1 y f ( x ) ) + + 1 2 | | f | | H 2 } ,

with C = 1 / ( 2 λ n ) , which is equivalent to the standard SVM minimization problem.

References

Regularization perspectives on support vector machines Wikipedia


Similar Topics