使用h5py

时间:2016-10-15 18:34:45

标签: python-2.7 numpy hdf5 h5py

我有一些生成3d Numpy数组的示例代码 - 然后我使用h5文件将此数据保存到h5py文件中。那么我怎样才能沿着第四维“追加”第二个数据集呢?或者,如何沿现有.h5文件的第4维(或新轴)编写另一个3d数据集?我已经阅读了我能找到的文档,但没有一个例子可以解决这个问题。我的代码如下所示:

import h5py
import numpy as np

dataset1 = np.random.rand(240,240,250);
dataset2 = np.random.rand(240,240,250);

with h5py.File('data.h5', 'w') as hf:
    dset = hf.create_dataset('dataset_1', data=dataset1)

1 个答案:

答案 0 :(得分:3)

使用http://docs.h5py.org/en/latest/high/dataset.html我尝试了一下:

In [504]: import h5py
In [505]: f=h5py.File('data.h5','w')
In [506]: data=np.ones((3,5))

制作一个普通的dataset

In [509]: dset=f.create_dataset('dset', data=data)
In [510]: dset.shape
Out[510]: (3, 5)
In [511]: dset.maxshape
Out[511]: (3, 5)

resize的帮助:

In [512]: dset.resize?
Signature: dset.resize(size, axis=None)
Docstring:
Resize the dataset, or the specified axis.

The dataset must be stored in chunked format; it can be resized up to
the "maximum shape" (keyword maxshape) specified at creation time.
The rank of the dataset cannot be changed.

由于我没有指定maxshape,因此我看起来不会更改或添加到此数据集。

In [513]: dset1=f.create_dataset('dset1', data=data, maxshape=(2,10,10))
...
ValueError: "maxshape" must have same rank as dataset shape

所以我无法定义一个3d'空间'并在其中放入一个二维数组 - 至少不是这样。

但我可以向data添加维度(等级):

In [514]: dset1=f.create_dataset('dset1', data=data[None,...], maxshape=(2,10,10))
In [515]: dset1
Out[515]: <HDF5 dataset "dset1": shape (1, 3, 5), type "<f8">

现在我可以调整数据集的大小 - 一维或多维,直到定义的最大值

In [517]: dset1.resize((2,3,10))
In [518]: dset1
Out[518]: <HDF5 dataset "dset1": shape (2, 3, 10), type "<f8">
In [519]: dset1[:]
Out[519]: 
array([[[ 1.,  1.,  1.,  1.,  1.,  0.,  0.,  0.,  0.,  0.],
        [ 1.,  1.,  1.,  1.,  1.,  0.,  0.,  0.,  0.,  0.],
        [ 1.,  1.,  1.,  1.,  1.,  0.,  0.,  0.,  0.,  0.]],

       [[ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.],
        [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.],
        [ 0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.,  0.]]])

原始data占据展开数据集的一角

现在填写一些零:

In [521]: dset1[1,:,:]=10
In [523]: dset1[0,:,5:]=2

In [524]: dset1[:]
Out[524]: 
array([[[  1.,   1.,   1.,   1.,   1.,   2.,   2.,   2.,   2.,   2.],
        [  1.,   1.,   1.,   1.,   1.,   2.,   2.,   2.,   2.,   2.],
        [  1.,   1.,   1.,   1.,   1.,   2.,   2.,   2.,   2.,   2.]],

       [[ 10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.],
        [ 10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.],
        [ 10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.,  10.]]])

是的,您可以将dataset放在一个h5数据集中,前提是您指定了足够大的maxshape,例如: (2,240,240,250)或(240,240,500)或(240,240,250,2)等。

或者无限制地调整大小maxshape=(None, 240, 240, 250))

看起来主要的限制是您无法在创建后添加维度。

另一种方法是在存储之前连接数据,例如

dataset12 = np.stack((dataset1, dataset2), axis=0)