I'm using the liblinear library to train a linear SVM on my data. I have access to the weights for each class of the trained model. But I need to figure out which training instances are acting as support vectors.
The liblinear library doesn't seem to provide these vectors as a model attribute. And I can't seem to figure out how I can find them manually. If I have the training data and I have the weights that define the hyperplane, how would I go about finding these support vectors?
Let me assume we are talking about libsvm instead of sklearn svc.
The answer can be found in the LIBLINEAR FAQ. In short, you can't. You need to modify the source code.