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

Support dask types #20

Closed jcrist closed 7 years ago

jcrist commented 7 years ago

This adds support for passing dask objects to fit.

Todo:

mrocklin commented 7 years ago

What is the behavior when I pass a dask.dataframe or dask.array? Do we not just coerce to a numpy array or pandas dataframe?

jcrist commented 7 years ago

No "chunked" work is done, so dask.array/dask.dataframe objects will be computed before being passed to fit. The main point of this PR is to: