1. Installing h5py1. 安装 h5py
If you don’t have the h5py library installed, you can install it via pip:如果你没有安装 h5py 库,你可以通过 pip 安装它:
pip install h5py
2. Creating an HDF5 file2. 创建 HDF5 文件
To create a new HDF5 file and add datasets to it:要创建新的 HDF5 文件并向其添加数据集,请执行以下操作:
import h5py
import numpy as np
# Create a new HDF5 file
with h5py.File('example.h5', 'w') as f:
# Create a dataset inside the file
data = np.random.rand(100, 100)
f.create_dataset('my_data', data=data)
3. Opening and Reading from an HDF5 file3. 打开和读取 HDF5 文件
To read data from an existing .h5 file:要从现有 .h5 文件中读取数据:
with h5py.File('example.h5', 'r') as f:
# Check available datasets
print("Available datasets:", list(f.keys()))
# Access a specific dataset
dataset = f['my_data']
# Read data into a NumPy array
data = dataset[:] print(data.shape)
4. Appending or Modifying Data4. 附加或修改数据
You can modify existing datasets or add new ones:您可以修改现有数据集或添加新数据集:
with h5py.File('example.h5', 'a') as f:
# Modify existing dataset
f['my_data'][...] = np.random.rand(100, 100)
# Add a new dataset
f.create_dataset('new_data', data=np.random.rand(10, 10))
5. Attributes5. 属性
You can add metadata attributes to datasets or groups:您可以向数据集或组添加元数据属性:
with h5py.File('example.h5', 'a') as f:
dataset = f['my_data']
# Add an attribute to the dataset
dataset.attrs['description'] = 'Random data for testing'
print(dataset.attrs['description'])
6. Working with Groups6. 使用群组
Groups are like folders that can hold datasets and other groups:组类似于可以保存数据集和其他组的文件夹:
with h5py.File('example.h5', 'a') as f:
group = f.create_group('my_group')
group.create_dataset('group_data', data=np.random.rand(5, 5))
# Accessing data inside the group
group_data = f['my_group/group_data'][:]
print(group_data)
7. Checking the Structure of an HDF5 File7. 检查 HDF5 文件的结构
You can view the structure of an HDF5 file using recursion or just by checking the keys:您可以使用递归或仅通过检查键来查看 HDF5 文件的结构:
def print_structure(name, obj):
print(f"Name: {name}, Type: {type(obj)}")
with h5py.File('example.h5', 'r') as f:
f.visititems(print_structure)
8. Closing the HDF5 File8. 关闭 HDF5 文件
While the with statement automatically closes the file after the block finishes, you can explicitly close the file if needed:虽然 with 语句会在块完成后自动关闭文件,但如果需要,您可以显式关闭文件:
f = h5py.File('example.h5', 'r')
# Do something with the file
f.close()
9. Deleting Data or Groups9. 删除数据或群组
To delete a dataset or group:要删除数据集或组:
with h5py.File('example.h5', 'a') as f:
del f['my_data'] # Delete the dataset
del f['my_group'] # Delete the group
10. Check if Dataset or Group Exists10. 检查数据集或组是否存在
To check if a dataset or group exists:要检查数据集或组是否存在,请执行以下操作:
with h5py.File('example.h5', 'r') as f:
if 'my_data' in f:
print("Dataset exists")
else:
print("Dataset does not exist")
Additional Resources:其他资源:
- h5py documentationh5py 文档
- HDF5 formatHDF5 格式
&spm=1001.2101.3001.5002&articleId=145359214&d=1&t=3&u=5917c6a9aaf14dee8fc88ff968e3bea1)
352

被折叠的 条评论
为什么被折叠?



