scikit-learn / ml-benchmarks

Benchmarks for various machine learning packages
http://scikit-learn.github.com/ml-benchmarks/
91 stars 49 forks source link

Add {libsvm, liblinear} from MLPy #3

Open fabianp opened 13 years ago

fabianp commented 13 years ago

Those guys are doing some really nice things with Cython + {libsvm, liblinear}

hlin117 commented 9 years ago

What's the difference between MLPy's implemention versus scikit-learn's interface with liblinear (svm.LinearSVC) and libsvm (svm.SVC)?

fabianp commented 9 years ago

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.