recover dict from 0-d numpy array(从 0-d numpy 数组中恢复字典)
问题描述
发生的事情是我(错误地)使用命令 numpy.save()
保存了一个字典(没有显示错误消息),现在我需要恢复字典中的数据.当我用 numpy.load()
加载它时,它的类型为 (numpy.ndarray
) 并且是 0-d,所以它不再是字典,我可以t 访问其中的数据,0-d 数组是不可索引的,所以做类似
What happened is that I (by mistake) saved a dictionary with the command numpy.save()
(no error messages shown) and now I need to recover the data in the dictionary. When I load it with numpy.load()
it has type (numpy.ndarray
) and is 0-d, so it is not a dictionary any more and I can't access the data in it, 0-d arrays are not index-able so doing something like
mydict = numpy.load('mydict')
mydict[0]['some_key']
不起作用.我也试过了
recdict = dict(mydict)
但这也没有用.
为什么当我用 numpy.save()
保存字典时 numpy 没有警告我?
Why numpy didn't warn me when I saved the dictionary with numpy.save()
?
有没有办法恢复数据?
提前致谢!
推荐答案
使用 mydict.item()
以 Python 标量的形式获取数组元素.
Use mydict.item()
to obtain the array element as a Python scalar.
>>> import numpy as np
>>> np.save('/tmp/data.npy',{'a':'Hi Mom!'})
>>> x=np.load('/tmp/data.npy')
>>> x.item()
{'a': 'Hi Mom!'}
这篇关于从 0-d numpy 数组中恢复字典的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 0-d numpy 数组中恢复字典


基础教程推荐
- 求两个直方图的卷积 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- 包装空间模型 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01