使用 python 访问 h5 文件中包含的所有数据
Accessing all the data contained in an h5 file with python
在我加载 h5 文件并检查密钥后,是否有任何其他数据可以存储在 h5 中但我可能会丢失?例如:
import h5py
a = '/path/to/file.h5'
a_h5 = h5py.File(a)
a_h5.keys()
从 h5py documentation 看来,你也可以这样做:
a_h5.values()
a_h5.items()
我不太了解这种格式,但这看起来像是您可以提取的附加信息。
在我加载 h5 文件并检查密钥后,是否有任何其他数据可以存储在 h5 中但我可能会丢失?例如:
import h5py
a = '/path/to/file.h5'
a_h5 = h5py.File(a)
a_h5.keys()
从 h5py documentation 看来,你也可以这样做:
a_h5.values()
a_h5.items()
我不太了解这种格式,但这看起来像是您可以提取的附加信息。