Add dask array support
See original GitHub issueStages:
- Basic support for
dask.array
- Stream
dask.array
- Use
dask.delayed
ordask.futures
to help downsample images.
CC: @mrocklin @dani-lbnl xref #43 https://github.com/scisprints/2018_05_sklearn_skimage_dask/issues/12
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (5 by maintainers)
Top Results From Across the Web
dask.array.add - Dask documentation
The arrays to be added. If x1.shape != x2.shape , they must be broadcastable to a common shape (which becomes the shape of...
Read more >dask.array.insert - Dask documentation
Object that defines the index or indices before which values is inserted. New in version 1.8.0. Support for multiple insertions when obj is...
Read more >Create Dask Arrays - Dask documentation
You can load or store Dask arrays from a variety of common sources like HDF5, NetCDF, Zarr, or any format that supports NumPy-style...
Read more >Array - Dask documentation
Dask Array implements a subset of the NumPy ndarray interface using blocked algorithms, cutting up the large array into many small arrays.
Read more >API - Dask documentation
Implements NumPy's indices for Dask Arrays. insert (arr, obj, values, axis). Insert values along the given axis before the given ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
The coarsen function might be relevant here
http://dask.pydata.org/en/latest/array-api.html#dask.array.coarsen
On Fri, May 25, 2018, 4:45 PM Matt McCormick notifications@github.com wrote:
For this use case, we have to accept all data as it comes. All data is welcome 😃.
Nicely done!
Good ideas, but these were unfortunately constraints from the use case.
Thanks for the reviews @hmaarrfk @mrocklin !