Closed jcrist closed 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?
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:
*SearchCV
obect. This also allows the input data to already be on the workers (perhaps even scattered) removing the need to serialize it.
This adds support for passing dask objects to
fit
.Todo: