Support Vector Machines Flashcards
What decides the direction of the separating hyperplane?
The weights
What decides the distance from the origin of the separating hyperplane?
The bias
Given a hyperplane, wX + b = 0,
how can we construct a parallel hyperplane?
A parallel hyperplane would have the form wX +b = c
If I have two parallel hyperplanes,
wX + b = 0
wZ + b = 1
what is the distance between them?
1/L2_norm(w)
What is the aim of an SVM?
To find a hyperplane that splits the two classes with the widest margin
What are we trying to minimise using a Hard-margin SVM?
The inverse of the margin
We want the largest margin possible, so we try to maximise its inverse
What are Support Vectors in a Hard-margin SVM?
Points that lie directly on the plane parallel to the separating boundary
What is one way to find the minimum for SVMs?
By creating a dual problem and using quadratic programming.
What are support vectors in a Soft-margin SVM?
Points that lie on the parallel hyperplane, in the margin, or are on the wrong side of the hyperplane
How do we classify non-linear data using an SVM?
Modify the Quadratic Programming solution to use basis functions instead of the inner product