ml-benchmarks
ml-benchmarks copied to clipboard
Add {libsvm, liblinear} from MLPy
Those guys are doing some really nice things with Cython + {libsvm, liblinear}
What's the difference between MLPy's implemention versus scikit-learn's interface with liblinear (svm.LinearSVC) and libsvm (svm.SVC)?
Hi, I think they are essentially the same but the bindings are different. Unlike for other libraries, these are non-trivial due to the specific data format of libsvm, that forces us to convert between numpy arrays and that data structure.