Python:通过numpy.save保存字典

时间:2016-10-24 13:39:20

标签: python numpy dictionary

我在内存中有一个大数据集(数百万行),格式为 numpy arrays 词典

构建此数据后,我想将它们存储到文件中; 所以,稍后我可以快速将这些文件加载​​到内存中,而无需再次从头开始重建这些数据。

np.save np.load 函数可以顺利完成numpy数组的工作。
但是我遇到了dict对象的问题。

见下面的样本。 d2是从文件加载的字典。 请参阅#out [28]它已作为numpy数组加载到d2中,而不是作为dict。所以进一步的dict操作如get不起作用。

有没有办法将文件中的数据作为dict(而不是numpy数组)加载?

In [25]: d1={'key1':[5,10], 'key2':[50,100]}

In [26]: np.save("d1.npy", d1)

In [27]: d2=np.load("d1.npy")

In [28]: d2
Out[28]: array({'key2': [50, 100], 'key1': [5, 10]}, dtype=object)

In [30]: d1.get('key1')  #original dict before saving into file
Out[30]: [5, 10]

In [31]: d2.get('key2')  #dictionary loaded from the file
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-31-23e02e45bf22> in <module>()
----> 1 d2.get('key2')

AttributeError: 'numpy.ndarray' object has no attribute 'get'

2 个答案:

答案 0 :(得分:43)

这是一个结构化数组。使用d2.item()首先检索实际的dict对象:

import numpy as np

d1={'key1':[5,10], 'key2':[50,100]}
np.save("d1.npy", d1)
d2=np.load("d1.npy")
print d1.get('key1')
print d2.item().get('key2')

结果:

[5, 10]
[50, 100]

答案 1 :(得分:3)

可以使用

pickle模块。示例代码:

from six.moves import cPickle as pickle #for performance
from __future__ import print_function
import numpy as np

def save_dict(di_, filename_):
    with open(filename_, 'wb') as f:
        pickle.dump(di_, f)

def load_dict(filename_):
    with open(filename_, 'rb') as f:
        ret_di = pickle.load(f)
    return ret_di

if __name__ == '__main__':
    g_data = {
        'm':np.random.rand(4,4),
        'n':np.random.rand(2,2,2)
    }
    save_dict(g_data, './data.pkl')
    g_data2 = load_dict('./data.pkl')
    print(g_data['m'] == g_data2['m'])
    print(g_data['n'] == g_data2['n'])

您也可以在一个pickle文件中保存多个python对象。在这种情况下,每个pickle.load调用都会加载一个对象。