根据字典值计算numpy数组中的向量总和

时间:2018-05-28 17:49:05

标签: python arrays numpy

我有一个类似下面的数组,但更大:

array = np.random.randint(6, size=(5, 4))

array([[4, 3, 0, 2],
   [1, 4, 3, 1],
   [0, 3, 5, 2],
   [1, 0, 5, 3],
   [0, 5, 4, 4]])

我还有一个字典,它给出了这个数组中每个值的向量表示:

dict_ = {2:np.array([3.4, 2.6, -1.2]), 0:np.array([0, 0, 0]), 1:np.array([3.9, 2.6, -1.2]), 3:np.array([3.8, 6.6, -1.9]), 4:np.array([5.4, 2.6, -1.2]),5:np.array([6.4, 2.6, -1.2])}

我想计算数组中每行的向量表示的平均值,但是当值为0时,在计算平均值时忽略它(字典将其显示为0向量)。

例如,对于第一行,它应该平均[5.4,2.6,-1.2],[3.8,6.6,-1.9]和[3.4,2.6,-1.2],并给出[4.2,3.93, - 1.43]作为输出的第一行。

我想要一个保持相同行结构的输出,并且有3列(字典中的每个向量都有3个值)。

如何以有效的方式完成?我的实际字典有超过100000个条目,数组是100000乘5000。

2 个答案:

答案 0 :(得分:1)

为了提高效率,我会将dict转换为数组,然后使用高级索引进行查找:

>>> import numpy as np
>>> 
# create problem
>>> v = np.random.random((100_000, 3))
>>> dict_ = dict(enumerate(v))
>>> arr = np.random.randint(0, 100_000, (100_000, 100))
>>> 
# solve
>>> from operator import itemgetter
>>> lookup = np.array(itemgetter(*range(100_000))(dict_))
>>> lookup[0] = np.nan
>>> result = np.nanmean(lookup[arr], axis=1)

或适用于OP的例子:

>>> arr = np.array([[4, 3, 0, 2],
...    [1, 4, 3, 1],
...    [0, 3, 5, 2],
...    [1, 0, 5, 3],
...    [0, 5, 4, 4]])
>>> dict_ = {2:np.array([3.4, 2.6, -1.2]), 0:np.array([0, 0, 0]), 1:np.array([3.9, 2.6, -1.2]), 3:np.array([3.8, 6.6, -1.9]), 4:np.array([5.4, 2.6, -1.2]),5:np.array([6.4, 2.6, -1.2])}
>>> 
>>> lookup = np.array(itemgetter(*range(6))(dict_))
>>> lookup[0] = np.nan
>>> result = np.nanmean(lookup[arr], axis=1)
>>> result
array([[ 4.2       ,  3.93333333, -1.43333333],
       [ 4.25      ,  3.6       , -1.375     ],
       [ 4.53333333,  3.93333333, -1.43333333],
       [ 4.7       ,  3.93333333, -1.43333333],
       [ 5.73333333,  2.6       , -1.2       ]])

对抗@ jpp的方法:

pp:    0.8046 seconds
jpp:  10.3449 seconds
results equal: True

生成时间的代码:

import numpy as np

# create problem
v = np.random.random((100_000, 3))
dict_ = dict(enumerate(v))
arr = np.random.randint(0, 100_000, (100_000, 100))

# solve
from operator import itemgetter
def f_pp(arr, dict_):
    lookup = np.array(itemgetter(*range(100_000))(dict_))
    lookup[0] = np.nan
    return np.nanmean(lookup[arr], axis=1)

def f_jpp(arr, dict_):
    def averager(x):
        lst = [dict_[i] for i in x if i]
        return np.mean(lst, axis=0) if lst else np.array([0, 0, 0])

    return np.apply_along_axis(averager, -1, arr)


from time import perf_counter
t = perf_counter()
r_pp = f_pp(arr, dict_)
s = perf_counter()
print(f'pp:  {s-t:8.4f} seconds')
t = perf_counter()
r_jpp = f_jpp(arr, dict_)
s = perf_counter()
print(f'jpp: {s-t:8.4f} seconds')
print('results equal:', np.allclose(r_pp, r_jpp))

答案 1 :(得分:0)

这是一个使用numpy.apply_along_axis的解决方案。

您应该测试并进行基准测试,看看性能是否适合您的用例。

A = np.random.randint(6, size=(5, 4))

print(A)

[[3 5 2 4]
 [2 4 5 2]
 [0 3 1 1]
 [3 4 4 5]
 [2 5 0 2]]

zeros = {k for k, v in dict_.items() if (v==0).all()}

def averager(x):
    lst = [dict_[i] for i in x if i not in zeros]
    return np.mean(lst, axis=0) if lst else np.array([0, 0, 0])

res = np.apply_along_axis(averager, -1, A)

array([[ 4.75      ,  3.6       , -1.375     ],
       [ 4.65      ,  2.6       , -1.2       ],
       [ 3.86666667,  3.93333333, -1.43333333],
       [ 5.25      ,  3.6       , -1.375     ],
       [ 4.4       ,  2.6       , -1.2       ]])