Understanding chunk size for 3D datasets #1400
kushalkolar
started this conversation in
General
Replies: 1 comment
-
yep, i think that would be reasonable! I would recommend trying this out with some sample data to see if it's ergonomic. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Trying to correctly understand optimal chunk size, from the docs:
https://zarr.readthedocs.io/en/stable/tutorial.html#chunk-optimizations
If my data are 3D,
[dim0, dim1, dim2]
, and I only ever slice alongdim0
, such asa[0, :, :]
ora[0:10, :, :]
, then would it be optimal to setchunks=(n, None, None)
wheren
is my typical slice length?Thanks!
Beta Was this translation helpful? Give feedback.
All reactions