Open fabianp opened 13 years ago
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.
Those guys are doing some really nice things with Cython + {libsvm, liblinear}