dask / dask-searchcv

dask-searchcv is now part of dask-ml: https://github.com/dask/dask-ml
BSD 3-Clause "New" or "Revised" License
240 stars 43 forks source link

What happened to Pipeline #18

Closed mrocklin closed 7 years ago

mrocklin commented 7 years ago

The Pipeline class seems to have disappeared. Are we now just introspecting sklearn pipelines to avoid recomputations of earlier stages?

jcrist commented 7 years ago

Yes, all the wrapper classes have been removed. A few reasons:

All this was done in https://github.com/dask/dask-learn/pull/14, if you want to see the commits.

mrocklin commented 7 years ago

Can you verify that we're still avoiding re-computation of early stages in a pipeline? Quick performance tests seem to suggest this.

jcrist commented 7 years ago

Yes. Both Pipeline and FeatureUnion are broke into components, and duplicate computations aren't repeated.