We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当将数据保存为 HDF5 数据集时,chunks 参数定义的块大小在某些维度上超出了数据本身的形状(data.shape),导致不兼容。具体信息是:chunk shape 为 (62, 200),而数据的实际形状为 (30, 251400)。
ValueError: Chunk shape must not be greater than data shape in any dimension. (62, 200) is not compatible with (30, 251400)
The text was updated successfully, but these errors were encountered:
你需要更改chunk shape,让其符合你的数据集,代码中的chunk shape是为62导的数据设置的
Sorry, something went wrong.
No branches or pull requests
当将数据保存为 HDF5 数据集时,chunks 参数定义的块大小在某些维度上超出了数据本身的形状(data.shape),导致不兼容。具体信息是:chunk shape 为 (62, 200),而数据的实际形状为 (30, 251400)。
ValueError: Chunk shape must not be greater than data shape in any dimension. (62, 200) is not compatible with (30, 251400)
The text was updated successfully, but these errors were encountered: