Re: [Scikit-learn-general] using forkserver through GridSearchCV and friends

2015-05-08 Thread Skipper Seabold
On Fri, May 8, 2015 at 9:40 AM, Skipper Seabold wrote: > Hi, > > Is there anyway to specify the backend used by joblib? It's not > obvious to me and this doesn't seem to work. > > from multiprocessing import set_start_method > set_start_method("forkserver") > Ah, it has to be in a `if __n

[Scikit-learn-general] using forkserver through GridSearchCV and friends

2015-05-08 Thread Skipper Seabold
Hi, Is there anyway to specify the backend used by joblib? It's not obvious to me and this doesn't seem to work. from multiprocessing import set_start_method set_start_method("forkserver") I get a ton of "RuntimeError: context has already been set" exceptions. On Python 3.4.2, sklearn 0