Support Vector Machines
SVMs are also called kernel methods.
Given linearly separable data (with real-valued attributes), we must find a linear discriminant function that separates the positives and negatives (i.e. the classes) and is as far as possible from any example in the data.
Therefore, SVMs aim to maximize the distance of the decision boundary to the closest point in the data set. This distance is called the margin of the hyperplane, and is denoted by ρ.
The line that achieves maximum margin is called the maximum margin hyperplane.

Computing the Equation for the Maximum Margin Hyperplane
Consider the data below (positive class: +1, negative class: -1)
x1121323x2121/227/41r−1+1−1+1+1+1
Let g(x)=wTx+w0
The hyperplane equation is g(x) = 0.
The distance from point x to the hyperplane is ∣∣w∣∣2g(x)=w12+w22+...+wd2g(x) (note that there is no w0 in the denominator).
We need to determine w,w0 such that wTxt+w0>0 if rt=+1 and wTxt+w0≤0 if rt=−1.
For our data, we have the following linear constraints:
w1+w2+w0≤0
2w1+2w2+w0>0
w1+21w2+w0≤0, and so on.
For the maximum margin hyperplane, we have ∣∣w∣∣2g(x)=ρ
Suppose we scale the coefficients of g, such that the new g(x)=1 (let's call it g∼(x)) for the points closest to the hyperplane. To do so, we must divide the coefficients of g by a certain quantity. Which quantity to use? Maybe the margin ρ?
Now, replace g(x) by g∼(x), we have new g(x) = −+1 for the points closest to the hyperplane. These points are called support vectors. Typically, we have at least 3 support vectors, some of which are on the + side and some are on the - side. The intuiton behind calling them support vectors is that they support the hyperplane in place, and the hyperplane will move if any of them move.
So, for the support vectors, g(xt)=+1ifrt=+1 and g(xt)=−1ifrt=−1. For other examples:
g(xt)>+1ifrt=+1
g(xt)<−1ifrt=−1
Maximum margin hyperplane on support vectors x satisfies the cannonical form of the maximum margin hyperplane i.e. g(x) = −+1. So, ρ=∣∣w∣∣2−+1.
Therefore, we must maximize w12+w22+...+wd2−+1 subject to the constraints:
wTx+w0≥+1forallxtwherert=+1
wTx+w0≤−1forallxtwherert=−1
The solution gives the weights of the maximum margin hyperplane.
(to simplify, we minimize w12+w22+...+wd2).
This is, however, the theoretical computation. SVM softwares compute slightly differently.
SVM softwares often don't directly output the weights. Instead, they output a dual representation of the hyperplane g(x)=0 where g(x)=wTx+w0:
Let I be the indices of the support vectors. The SVM software outputs g(x) as a function of the support vectors:
g(x)=[∑t∈I(vt[xt])T.x]+v0
where x=[x1x2] i.e. the example to be classified.
Suppose the support vectors are [27/4],[31],[11]say x19,x5,x72 respectively, it will output coefficients for each support vector i.e. v19=3,v5=9,v72=−4 respectively, and v0=3(say).
The software will, therefore, output g(x). The coefficients of x1,x2 in g(x) give the weights w1,w2 and the constant term will be w0.
So, we have two representtions of the maximum margin hyperplane:
The Primal Representation g(x)=∑i=1dwixi+w0
The Dual Representation g(x)=[∑t∈I(vt[xt])T.x]+v0
(vt=0 for all t where xt is not a support vector).
SVM with Non-Linearly-Separable Data
The above works when the data is linearly-separable. What if the data is not linearly separable?
Say the data follows x12+x22=1. We can make the data linearly separable using z1=x12,z2=x22.
g(x)=−x12−x22+1⇒g(z)=−z1−z2+1
Then, the above technique can be used, since the data (in terms of z) is linearly separable.
However, this cannot always be done.
The idea is to map the data to a new space where it becomes linearly separable. This new space is an infinite-dimensional space.
Let zt=ϕ(xt) where ϕ is a mapping function.
Then, we have:
g(ϕ(x))=[∑t∈Ivtϕ(xt)].ϕ(xt)+v0=[∑t∈Ivt[ϕ(xt).ϕ(x)]]+v0
Suppose we have an easy way to compute K(x,y)=ϕ(x).ϕ(y), for x,y in the original space, K is called a kernel function. Then, we have:
g(ϕ(x))=[∑t∈Ivt[K(xt,x)]]+v0 ------------------ (1)
The kernel trick is to avoid computing ϕ in the new space, by using a kernel function.
Some commonly-used kernel functions:
Linear Kernel: K(x,y)=x.y
Polynomial Kernel (of degree d):
For d=2, x1,x2→x12,x22,x1x2,x1,x2
Consider K(x,y)=K(x1,x2,y1,y2)
Let ϕnew(x)=12x12x22x1x2x12x22(this makes it easier to compute), then, Knew(x,y)=ϕnew(x).ϕnew(y)=(1+x.y)2
In general, if the degree is d, the kernel function is K(x,y)=(1+x.y)d
The hope is that the data becomes linearly separable by a d-degree polynomial in the attributes.
Another version without lower order terms is K(x,y)=(x.y)d
d is a tunable parameter.
Gaussian Kernel (Radial Basis Function RBF Kernel):
K(x,y)=e−2σ2∣∣x−y∣∣2 where ∣∣x−y∣∣2 is the L2 norm i.e. basically the distance between x and y.
σ is a tunable parameter.
Using a Gaussian kernel is analogous to computing a distance-weighted sum (similar to KNN). It is the most suitable kernel when the data forms a checker-board pattern. To use a Polynomial kernel for the same data, we would need to use high degree d.
The Gaussian kernel is the most commonly-used kernel.
It can also be computed as K(x,y)=e−γ∣∣x−y∣∣2 where γ=2σ21. Small σ means a narrow Gaussian, while small γ means a flat Gaussian.
In general, we predict + if g(ϕ(x))≥0 and predict - otherwise. (from (1)).
Note: If the number of support vectors returned by the SVM software is not much smaller than the size of the training set, it is a clear sign of overfitting.
Soft-Margin Hyperplanes
The previously discussed hyperplane refers to a hard-margin hyperplane. A soft-margin hyperplane allows examples to be in the margin region, as well as on the wrong side of the hyperplane. To accomodate for the examples that are on the wrong side of the hyperplane, we penalize by the distance of those examples.
For a hard-margin hyperplane, we minimize ∣∣w∣∣2 subject to:
wTxt≥1ifyt=+1, and wTxt≤−1ifyt=−1 Equivalently, yt∗(wTxt)≥1forallxt∈X
For a soft-margin hyperplane, we do the following:
min∣∣w∣∣2+λ∑tεt, subject to:
yt∗(wTxt)≥1−εt; (εt≥0forallt)
λ is the penalty paramater. Note that a large penalty may cause overfitting.
Last updated