Created
June 6, 2018 09:13
-
-
Save aneesha/6585bfd5db6837239efa428bb14b3ffc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import h5py | |
f = h5py.File('myhdf5file.hdf5') | |
dset = f['/data/path'] | |
import dask.array as da | |
x = da.from_array(dset, chunks=(5000, 5000)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for your share. Would you mind to share your data set "myhdf5file.hdf5".