• We can use a transformation \(\phi\) to map data space \(R^d\) to a higher dimensional feature space \(R^p\)
  • Kernel is a function that implicitly and efficiently calculate inner product in feature space
    • Calculate the inner product without calculate \(\phi\)
    • That means we don’t have to know the explicit analytical form of \(\phi\)
    • Kernel function can be extended to structured data, like string, tree, and graph
\[\kappa(x_i,x_j) = <\phi(x_i),\phi(x_j)^T>\]

String kernel

Tree kernel

Graph kernel

Implementations