Slide 24
Slide 24 text
Scikit-learn Integra/on
Extended the distributed interface to support scikit-learn.
from distributed_scikit import GridSearchCV
grid_search = GridSearchCV(
GradientBoostingRegressor(),
parameters,
n_jobs=16)
A distributed pool with n_jobs will be created to distribute the
tasks.
24