2017-07-28 201 views
0

我是HDF5的新手,我试图创建一个包含三列的复合类型的数据集:MD5,大小,另一个数据集。如何创建数据集的h5py数据集

我该如何做到这一点?

我尝试下面的代码:

import h5py 
import numpy as np 

dbfile = h5py.File("test.h5",'w') 
dtype1 = h5py.Dataset('myset', (100,)) 
dtype2 = np.dtype([ 
    ('MD5', np.str_, 32), 
    ('size', "i8"), 
    ('timestep0', dtype1) 
    ]) 
records = dbfile.create_dateset('records', (4,), rec_type) 

我得到的错误:

typeError: __init__() takes exactly 2 arguments (3 given) 

参考线:

dtype1 = h5py.Dataset('myset', (100,)) 
+1

什么是'h5py.Dataset()'命令应该做的?该用途记录在哪里? http://docs.h5py.org/en/latest/high/dataset.html#creating-datasets – hpaulj

+0

我想要定义一个类型数据集。我假设h5py.Dataset会这样做。部分问题是我无法找到如何在文档中。 – user3394040

+0

我不明白。用'numpy'数组或者'HDF5'来说明你想要做的事情。 – hpaulj

回答

0

h5py.Dataset('myset', (100,))尝试直接创建dataset对象(调用它是__init__?)。但根据参考:

http://docs.h5py.org/en/latest/high/dataset.html#reference

class Dataset(identifier) 

Dataset objects are typically created via Group.create_dataset(), or by 
retrieving existing datasets from a file. Call this constructor to 
create a new Dataset bound to an existing DatasetID identifier. 

即使你能得到这样的对象(我还是不明白),它是不会在np.dtype工作。例如,如果我用datetime.datetime对象替换它,结果是dtype='O'

In [503]: dtype2 = np.dtype([ 
    ...:  ('MD5', np.str_, 32), 
    ...:  ('size', "i8"), 
    ...:  ('timestep0', datetime.datetime) 
    ...:  ]) 

In [504]: dtype2 
Out[504]: dtype([('MD5', '<U32'), ('size', '<i8'), ('timestep0', 'O')]) 

numpy dytes有已定义的类型,如字符串,整型和浮点,并object(未列表中,字典或其他Python类)。

我可以将复合dtype保存为h5py,但无法保存对象dtypes。有一个h5py dtype被加载到一个numpy对象dtype中,但它通常不会在另一个方向上工作。

http://docs.h5py.org/en/latest/special.html#variable-length-strings

hdf5 can't write numpy array of object type

http://docs.h5py.org/en/latest/refs.html - 对象参

In [7]: import h5py 
In [8]: f = h5py.File('wtihref.h5','w') 
In [9]: ds0 = f.create_dataset('dset0',np.arange(10)) 
In [10]: ds1 = f.create_dataset('dset1',np.arange(11)) 
In [11]: ds2 = f.create_dataset('dset2',np.arange(12)) 
In [12]: ds2.ref 
Out[12]: <HDF5 object reference> 
In [13]: ref_dtype = h5py.special_dtype(ref=h5py.Reference) 
In [14]: ref_dtype 
Out[14]: dtype('O') 
In [16]: rds = f.create_dataset('refdset', (5,), dtype=ref_dtype) 
In [17]: rds[:3]=[ds0.ref, ds1.ref, ds2.ref] 
In [28]: [f[r] for r in rds[:3]] 
Out[28]: 
[<HDF5 dataset "dset0": shape (0, 1, 2, 3, 4, 5, 6, 7, 8, 9), type "<f4">, 
<HDF5 dataset "dset1": shape (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10), type "<f4">, 
<HDF5 dataset "dset2": shape (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11), type "<f4">] 

与化合物D型细胞

In [55]: dt2 = np.dtype([('x',int),('y','S12'),('z',ref_dtype)]) 
In [56]: rds1 = f.create_dataset('refdtype', (5,), dtype=dt2) 
In [72]: rds1[0]=(0,b'ONE',ds0.ref) 
In [75]: rds1[1]=(1,b'two',ds1.ref) 
In [76]: rds1[2]=(2,b'three',ds2.ref) 
In [82]: rds1[:3] 
Out[82]: 
array([(0, b'ONE', <HDF5 object reference>), 
     (1, b'two', <HDF5 object reference>), 
     (2, b'three', <HDF5 object reference>)], 
     dtype=[('x', '<i4'), ('y', 'S12'), ('z', 'O')]) 
In [83]: f[rds1[0]['z']] 
Out[83]: <HDF5 dataset "dset0": shape (0, 1, 2, 3, 4, 5, 6, 7, 8, 9), type "<f4"> 

h5py使用的metadata属性来存储参考信息:

In [84]: ref_dtype.metadata 
Out[84]: mappingproxy({'ref': h5py.h5r.Reference}) 
In [85]: dt2.fields['z'] 
Out[85]: (dtype('O'), 16) 
In [86]: dt2.fields['z'][0].metadata 
Out[86]: mappingproxy({'ref': h5py.h5r.Reference})