I would like to train multiple one class svms in different threads. Does anybody know if scikits.learn.svm releases the GIL? I did not find any answer on google. Thanks

link|improve this question

22% accept rate
feedback

1 Answer

up vote 1 down vote accepted

No, scikit-learn does not play any tricks with the GIL. Instead, it uses joblib for all its parallelism, which spawns multiple processes to do its work. You can achieve what you want with a custom joblib Parallel construct.

If you intend to train multiple classifiers on the same dataset with different settings to find the optimal one, consider using the GridSearchCV class, which handles parallelism for you.

link|improve this answer
Thanks for your comments, unfortunately the problem is actually not solved since I need to rely on an external library for parallelism which uses different threads (for compatibility with other parts of a bigger application). Therefore I would like to find an alternative library for svm which releases the GIL .. or to trick scikits.learn to do that. Do you maybe have any suggestion? – user511005 Sep 14 '11 at 7:30
You might want to run scikit-learn code in a subprocess. The classifiers it produces can be pickled, so you can transfer them between processes quite easily; the only problem would be transferring the training data in an efficient way (perhaps through the file system?). – larsmans Sep 14 '11 at 8:23
Also the libsvm wrapper is written in Cython. I think it should be pretty straightforward to patch the wrapper code to release the GIL. If you do so and that it solves your issue please submit your change as a pull request on github. Also: be warned that scikit-learn estimators are not meant to be thread safe: use disctinct estimator instances across threads. – ogrisel Sep 17 '11 at 8:49
Also if you want to clone estimators to pass it around threads while isolating them you can use from sklearn.base import clone and then call clone(estimator). – ogrisel Sep 17 '11 at 8:58
feedback

Your Answer

 
or
required, but never shown

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