说明
1、hdf5不支持用其他浏览器打开,建议写代码读取。
2、在HDF5文件中读取所有数据集,然后传输到路径。
实例
#在HDF5文件中读取所有数据集 deftraverse_datasets(hdf_file): importh5py defh5py_dataset_iterator(g,prefix=''): forkeying.keys(): item=g[key] path='{}/{}'.format(prefix,key) ifisinstance(item,h5py.Dataset):#testfordataset yield(path,item) elifisinstance(item,h5py.Group):#testforgroup(godown) yieldfromh5py_dataset_iterator(item,path) withh5py.File(hdf_file,'r')asf: for(path,dset)inh5py_dataset_iterator(f): print(path,dset) returnNone #可以传入路径 traverse_datasets('datasets/train_catvnoncat.h5')
以上是python查看hdf5文件的方法,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。