Re: [Scikit-learn-general] Implementing n_jobs for OneVsRestClassifier

2012-11-28 Thread Mathieu Blondel
On Thu, Nov 29, 2012 at 10:39 AM, Afik Cohen wrote: > > It's easy to see how with some slight modifications (wrapping that in a > joblib > Parallel() call) we could enable n_jobs for OneVsRestClassifier. This > almost > seems too simple, so there must be a good reason why this isn't done; could >

[Scikit-learn-general] Implementing n_jobs for OneVsRestClassifier

2012-11-28 Thread Afik Cohen
Hi all, We've been looking at ways to parallelize our classifier training, and we looked at the n_jobs parameter as a possible way to do that. The classifier we're currently using, SGDClassifier, supports that parameter, but since we're using a OneVsRest (Ovr) strategy, our call is wrapped in a O