SVM: Kernel Methods

SVM: Kernel Methods

Kernel function

Given a mapping function ϕ:XV\phi: \mathcal{X} \rightarrow \mathcal{V}, the function

K:xv,K(x,x)=ϕ(x),ϕ(x)V \mathcal{K}: x \rightarrow v, \quad \mathcal{K}\left(\mathbf{x}, \mathbf{x}^{\prime}\right)=\left\langle\phi(\mathbf{x}), \phi\left(\mathbf{x}^{\prime}\right)\right\rangle_{\mathcal{V}}

is called a kernel function.

“A kernel is a function that returns the result of a dot product performed in another space.”

Kernel trick

Applying the kernel trick simply means replacing the dot product of two examples by a kernel function.

Typical kernels

Kernel TypeDefinition
Linear kernelk(x,x)=x,xk\left(\boldsymbol{x}, \boldsymbol{x}^{\prime}\right)=\left\langle\boldsymbol{x}, \boldsymbol{x}^{\prime}\right\rangle
Polynomial kernelk(x,x)=x,xdk\left(\boldsymbol{x}, \boldsymbol{x}^{\prime}\right)=\left\langle\boldsymbol{x}, \boldsymbol{x}^{\prime}\right\rangle^{d}
Gaussian / Radial Basis Function (RBF) kernelk(x,y)=exp(xy22σ2)k \left(\boldsymbol{x}, \boldsymbol{y}\right)=\exp \left(-\frac{\|\boldsymbol{x}-\boldsymbol{y}\|^{2}}{2 \sigma^{2}}\right)

Why do we need kernel trick?

  • Kernels can be used for all feature based algorithms that can be rewritten such that they contain inner products of feature vectors

    • This is true for almost all feature based algorithms (Linear regression, SVMs, …)
  • Kernels can be used to map the data x\mathbf{x} in an infinite dimensional feature space (i.e., a function space)

    • The feature vector never has to be represented explicitly
    • As long as we can evaluate the inner product of two feature vectors

➡️ We can obtain a more powerful representation than standard linear feature models.

\ma…
\bol…
\bol…
\ma…
\phi(\bo…
\phi(\bo…
\langle \phi(\b…
Kernel function
Kernel function…
1. explicit transformation
1. explicit transformat…
computationally expensive for high-dimensional feature vector
computationally expensive for high-dimensional feature ve…
2. inner product
2. inner product
avoids explicit mapping computationally cheaper
avoids explicit mapping \Rightarrow computationally…
Viewer does not support full SVG 1.1