8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd2e48c commit ec0111cCopy full SHA for ec0111c
sklearn/grid_search.py
@@ -670,9 +670,18 @@ class GridSearchCV(BaseSearchCV): AB5D
670
fit_params : dict, optional
671
Parameters to pass to the fit method.
672
673
- n_jobs : int, default=1
674
- Number of jobs to run in parallel.
675
-
+ n_jobs: int, default: 1 :
+ The maximum number of concurrently running jobs.
+
676
+ - If -1 all CPUs are used.
677
678
+ - If 1 is given, no parallel computing code is used at all,
679
+ which is useful for debugging.
680
681
+ - For n_jobs below -1, (n_cpus + 1 + n_jobs) are used.
682
683
+ - For n_jobs = -2, all CPUs but one are used.
684
685
.. versionchanged:: 0.17
686
Upgraded to joblib 0.9.3.
687
0 commit comments