I'm building some predictive models in python and have been using scikits learn's SVM implementation. It's been really great, easy to use, and relatively fast. Unfortunately, I'm beginning to become constrained by my runtime. I run a rbf SVM on a full dataset of about 4 - 5000 with 650 features. Each run takes about a minute. But with a 5 fold cross validation + grid search (using a coarse to fine search), it's getting a bit unfeasible for my task at hand. So generally, do people have any recommendations in terms of the fastest SVM implementation that can be used in python? That, or any ways to speed up my modeling?

I've heard of LIBSVM's GPU implementation, which seems like it could work. I don't know of any other GPU SVM implementations usable in python, but would definitely be open to others. Also, does using the GPU significantly increase runtime?

I've also heard that there are ways of approximating the rbf SVM by using a linear SVM + feature map in scikits. Not sure what people think about this approach. Again, anyone using this approach, is it a significant increase in runtime?

All ideas for increasing the speed of program is most welcome. Thanks!

link|improve this question

33% accept rate
feedback

3 Answers

up vote 5 down vote accepted

The most scalable kernel SVM implementation I know of is LaSVM. It's written in C hence wrap-able in Python if you know cython or ctypes. Alternatively you can use it from the command line. You can use the utilities in sklearn.datasets to load convert data from a numpy or CSR format into svmlight formatted files that LaSVM can use as training / test set.

link|improve this answer
Thanks ogrisel. I'll take a look at this. Definitely looks interesting. Sklearn can export into svm light format? That will definitely be useful. In response to your prior answer, unfortunately, I'm dealing with timeseries, so random sampling + spitting into train/test becomes quite a bit more complicated. Not sure subsampling to train my model will be all that straightforward. Thanks! – tomas Feb 15 at 20:49
Sorry quick addendum ogrisel, do you know what utility function in sklearn can export in SVM light format? – tomas Feb 15 at 20:55
Indeed it's missing from the doc but it's there: github.com/scikit-learn/scikit-learn/blob/master/sklearn/… – ogrisel Feb 15 at 21:00
@thomas If your samples are not (loosely) iid there is a lot of chance that SVM with a generic kernel such as RBF will not yield good results. If you have time-series data (with time dependencies between consecutive measurements) you should either extract higher level features (e.g. convolutions over sliding windows or STFT) or precompute a time series dedicated kernel. – ogrisel Feb 15 at 21:02
Hmm... interesting. Do you mind expanding on what you said? I've heard of dependent data causing issues for cross validation procedures, but not specifically for a rbf SVM. What issues can arise? And any references or pointers on what is meant by extracting higher level features? Don't know if the comment section is the best place, but would love to hear more about this. thanks. – tomas Feb 16 at 13:31
show 3 more comments
feedback

Alternatively you can run the grid search on 1000 random samples instead of the full dataset:

>>> from sklearn.cross_validation import ShuffleSplit
>>> cv = ShuffleSplit(3, test_fraction=0.2, train_fraction=0.2, random_state=0)
>>> gs = GridSeachCV(clf, params_grid, cv=cv, n_jobs=-1, verbose=2)
>>> gs.fit(X, y)

It's very likely that the optimal parameters for 5000 samples will be very close to the optimal parameters for 1000 samples. So that's a good way to start your coarse grid search.

n_jobs=-1 makes it possible to use all your CPUs to run the individual CV fits in parallel. It's using mulitprocessing so the python GIL is not an issue.

link|improve this answer
feedback

Without going to much into comparing SVM libs, I think the task you are describing (cross-validation) can benefit from real multi-threading (i.e. running several CPUs in parallel). If you are using CPython, it does not take advantage of your (probably)-multi-core machine, due to GIL. You can try other implementations of Python which don't have this limitation. See PyPy or IronPython if you are willing to go .NET

link|improve this answer
Thanks bavaza I'll take a look into it. Assuming I do take advantage of my multicore computer, any other suggestions on speeding up my program? I was going figure out a way to cross validate across multiple threads anyways. However, I think I still need a speed up. – tomas Feb 15 at 19:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.