What is the difference between SVC and SVM in scikit-learn?
They are just different implementations of the same algorithm. The SVM module (SVC, NuSVC, etc) is a wrapper around the libsvm library and supports different kernels while LinearSVC is based on liblinear and only supports a linear kernel. So: SVC(kernel=”linear”) is in theory “equivalent” to: LinearSVC() Because the implementations are different in practice you will … Read more