Welcome to the Machine Learning Course for Black and Indigenous Students!

This program is offered by Vector Institute in its drive to build research and expand career pathways in the field of AI for under-represented populations.

Instructor: Bonaventure Molokwu | Tutorial Developer: Manmeet Kaur Baxi | Course Tutors: Yinka Oladimeji and Manmeet Kaur Baxi | Course Director: Shingai Manjengwa (@Tjido)

Never stop learning!

Support Vector Machines (SVM)

Intuition

Terminology

  1. Support Vectors: The data points, which are closest to the hyperplane. These points will define the separating line better by calculating margins. These points are more relevant to the construction of the classifier.

  2. Hyperplane: A decision plane that separates between a set of objects having different class memberships.

  3. Margin: A gap between the two lines on the closest class points. This is calculated as the perpendicular distance from the line to support vectors or closest points. If the margin is larger in between the classes, then it is considered a good margin, a smaller margin is a bad margin.

    Untitled

How does it work?

The main objective is to segregate the given dataset in the best possible way. The distance between the either nearest points is known as the margin. The objective is to select a hyperplane with the maximum possible margin between support vectors in the given dataset.

SVM searches for the maximum marginal hyperplane in the following steps: