Lecture 5: Support Vector Machines

Today’s topic Support Vector Machines (SVM)

Support vector machines (SVMs) are used for classification, and use some of the ideas from logistic regression. Support vector machines deal with noisy data, where some labels are miss-classified, with large-margin classifiers.

Support vector machines can also do non-linear classification using kernels. A kernel is a non-linear transformation of the input data into a higher dimensional space. Kernels transform your input data into a space where it is possible to do linear separation as in logistic regression.

This sounds very abstract, but the basic mathematics is not very complicated. Support vector machines are very powerful, and before you try neural networks try SVMs with different kernels.

These are the slides that I use.

Reading Guide

What should I know by the end of this lecture?

  • What are Support Vector Machines?
  • What is a large margin classifier?
  • What is the hinge loss function?
  • What are Kernels? You should know some common kernels including the polynomial kernel and the Gaussian kernel (or radial bases kernel).
  • What is the Kernel trick?
  • How does the learning algorithm work for SVMs?
Previous
Next