Welcome to the staging ground for new communities! Each proposal has a description in the "Descriptions" category and a body of questions and answers in "Incubator Q&A". You can ask questions (and get answers, we hope!) right away, and start new proposals.
Are you here to participate in a specific proposal? Click on the proposal tag (with the dark outline) to see only posts about that proposal and not all of the others that are in progress. Tags are at the bottom of each post.
Post History
I know what Support Vector Machines (SVMs) are and how they work, but I regularly get confused by what exactly the support vectors are. In case of linearly separable data, the support vectors are ...
#1: Initial revision
What are the support vectors in a soft-margin SVM
I know what Support Vector Machines (SVMs) are and how they work, but I regularly get confused by what exactly the support vectors are. In case of linearly separable data, the support vectors are those data points that lie (exactly) on the borders of the margins. After all, these are the only points that are necessary to compute the margin (through the bias term b) and therefore _support_ the solution. For soft-margin $C$-SVMs, however, I find the concept of support vectors less obvious. Of course, the data points on the border of the margin are still support vectors, but I always get confused about whether the points that are in the margin are support vectors or not. After all, only the points on the borders are used to compute the bias term $b$ (in the same way as for linearly separable data). Therefore, it could be argued that the margin is only supported by these points. However, there are [multiple](https://stats.stackexchange.com/questions/96497/effect-of-high-number-of-support-vectors) [sources](https://stats.stackexchange.com/questions/270187/svm-why-does-the-number-of-support-vectors-decrease-when-c-is-increased) that mention 1000+ support vectors, which would be impossible if only those on the border count. My question is thus: What exactly are the support vectors for a soft-margin SVM?