diff --git a/docs/using/index.html b/docs/using/index.html index 35348646..e278e8b9 100644 --- a/docs/using/index.html +++ b/docs/using/index.html @@ -719,7 +719,7 @@
More information about these start methods can be found in the multiprocessing documentation.
For large problems or working on Jupyter notebook, we highly recommend that you can distribute the work on a Dask cluster. -The dask-examples binder has a runnable example +The dask-examples binder has a runnable example with a small dask cluster.
To use your Dask cluster to fit a TPOT model, specify the use_dask
keyword when you create the TPOT estimator. Note: if use_dask=True
, TPOT will use as many cores as available on the your Dask cluster. If n_jobs
is specified, then it will control the chunk size (10*n_jobs
if it is less then offspring size) of parallel training.
estimator = TPOTEstimator(use_dask=True, n_jobs=-1)