Introduction
Support vector machines are a method of binary classification. The basic idea is to find a linear separating line (or hyperplane) between the two classes. We first assume that the binary class targets are -1
or 1
, instead of the prior 0
or 1
targets. Since there may be many lines that separate two classes, we define the best linear separator that maximizes the distance between both classes.
We can write such a hyperplane as follows:
Here, A is a vector of our partial slopes and x is a vector of inputs. The width of the maximum margin can be shown to be two divided by the L2 norm of A. There are many proofs out there of this fact, but for...