File tree 2 files changed +5
-0
lines changed 2 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 237
237
'scipy' : ('https://docs.scipy.org/doc/scipy/reference' , None ),
238
238
'matplotlib' : ('https://matplotlib.org/' , None ),
239
239
'pandas' : ('https://pandas.pydata.org/pandas-docs/stable/' , None ),
240
+ 'joblib' : ('https://joblib.readthedocs.io/en/latest/' , None ),
240
241
}
241
242
242
243
sphinx_gallery_conf = {
Original file line number Diff line number Diff line change @@ -1482,6 +1482,10 @@ functions or non-estimator constructors.
1482
1482
parallel computing code is used at all. For n_jobs below -1, (n_cpus +
1483
1483
1 + n_jobs) are used. Thus for n_jobs = -2, all CPUs but one are used.
1484
1484
1485
+ ``n_jobs=None `` means *unset *; it will generally be interpreted as
1486
+ ``n_jobs=1 ``, unless the current :class: `joblib.Parallel ` backend
1487
+ context specifies otherwise.
1488
+
1485
1489
The use of ``n_jobs ``-based parallelism in estimators varies:
1486
1490
1487
1491
* Most often parallelism happens in :term: `fitting <fit> `, but
You can’t perform that action at this time.
0 commit comments