scikit-lean GridSearchCV n_jobs != 1 freezing
问题 I'm running grid search on random forests and trying to use n_jobs different than one but the kernel freezes, there is no CPU usage. With n_jobs=1 it works fine. I can't even stop the command with ctl-C and have to restart the kernel. I'm running on windows 7. I saw that there is a similar problem with OS X but the solution is not relevant for windows 7. from sklearn.ensemble import RandomForestClassifier rf_tfdidf = Pipeline([('vect',tfidf), ('clf', RandomForestClassifier(n_estimators=50,