在 python3 中使用 h5py 发现密钥
Posted
技术标签:
【中文标题】在 python3 中使用 h5py 发现密钥【英文标题】:Discovering keys using h5py in python3 【发布时间】:2015-09-11 06:39:17 【问题描述】:在python2.7
中,我可以分析一个hdf5
文件的密钥使用情况
$ python
>>> import h5py
>>> f = h5py.File('example.h5', 'r')
>>> f.keys()
[u'some_key']
但是,在python3.4
,我得到了一些不同的东西:
$ python3 -q
>>> import h5py
>>> f = h5py.File('example.h5', 'r')
>>> f.keys()
KeysViewWithLock(<HDF5 file "example.h5" (mode r)>)
什么是KeysViewWithLock
,如何在 Python3 中检查我的 HDF5 密钥?
【问题讨论】:
对于更新版本的h5py
(我正在使用2.9.0
),似乎键对象的 str / repr 显示了键名本身,所以如果这只是为了人类消费, f.keys()
现在可以工作了(产生类似 <KeysViewHDF5 ['key1', 'key2', 'key3']>
的东西)。
【参考方案1】:
来自 h5py 的网站 (http://docs.h5py.org/en/latest/high/group.html#dict-interface-and-links):
在 Python 3 中使用 h5py 时,keys()、values() 和 items() 方法将返回类似视图的对象而不是列表。这些对象 支持容器测试和迭代,但不能像 列表。
这解释了为什么我们无法查看它们。最简单的答案是将它们转换为列表:
>>> list(for.keys())
不幸的是,我在 iPython 中运行,它使用命令“l”。这意味着该方法行不通。
为了实际查看它们,我们需要利用容器测试和迭代。集装箱船测试意味着我们必须已经知道密钥,所以它已经过时了。幸运的是,使用迭代很简单:
>>> [key for key in f.keys()]
['mins', 'rects_x', 'rects_y']
我创建了一个自动执行此操作的简单函数:
def keys(f):
return [key for key in f.keys()]
然后你得到:
>>> keys(f)
['mins', 'rects_x', 'rects_y']
【讨论】:
刚刚找到:list(f.keys())
.以上是关于在 python3 中使用 h5py 发现密钥的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 M1 在 MacOS 上安装 h5py(Keras 需要)?
如何使用 Python 和 h5py 读取 HDF5 属性(元数据)