On Mon, Oct 06, 2014 at 06:27:21PM +0000, Pagliari, Roberto wrote: > I’d like to use multiprocessing module to run different tasks at the same time > (each of which may run grid search).
> Are there any known issues when using this module with gridSearchCV (and njobs > >1 ), or anything I should consider when doing this? Nested parallelism will not work. In other terms, you cannot have multiprocessing to launch several jobs, each with a GridSearchCV with n_jobs > 1. It will simply crash, because it is not possible with the current architecture. Gaël ------------------------------------------------------------------------------ Slashdot TV. Videos for Nerds. Stuff that Matters. http://pubads.g.doubleclick.net/gampad/clk?id=160591471&iu=/4140/ostg.clktrk _______________________________________________ Scikit-learn-general mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/scikit-learn-general
