我需要将两个不同大小的稀疏矩阵(元素)相乘。这是矩阵:
matrix1 = (1, 2) 30.0
(2, 3) 20.0
(4, 5) 10.0
(6, 7) 80
matrix2 = (1, 2) 2.0
(2, 3) 1.0
(4, 5) 5.0
如您所见,matrix1
大于matrix2
。我需要将它们相乘以使matrix2
中不存在的元素(在本例中为元素(6, 7)
保持不变。我需要的输出如下:
final_matrix = (1, 2) 60.0
(2, 3) 20.0
(4, 5) 50.0
(6, 7) 80
对于我使用矩阵的真实数据非常大。如果您需要进一步说明,请与我们联系。
谢谢!
答案 0 :(得分:1)
对于密集阵列,执行这种乘法相对容易。快速,因为切片很快
In [453]: x=np.arange(24).reshape(4,6)
In [454]: y=np.arange(10,22).reshape(3,4)
In [457]: x[:3,:4] *= y
In [458]: x
Out[458]:
array([[ 0, 11, 24, 39, 4, 5],
[ 84, 105, 128, 153, 10, 11],
[216, 247, 280, 315, 16, 17],
[ 18, 19, 20, 21, 22, 23]])
使用稀疏等价物
In [460]: xM=sparse.csr_matrix(x)
In [462]: yM=sparse.csr_matrix(y)
切片乘法有效:
In [468]: z= xM[:3,:4].multiply(yM) # z.A matches the dense block
但是,当我尝试将该值重新分配到xM
In [469]: xM[:3,:4] = xM[:3,:4].multiply(yM)
/usr/lib/python3/dist-packages/scipy/sparse/compressed.py:730: SparseEfficiencyWarning: Changing the sparsity structure of a csr_matrix is expensive. lil_matrix is more efficient.
SparseEfficiencyWarning)
In [471]: xL=sparse.lil_matrix(x)
In [472]: yL=sparse.lil_matrix(y)
In [475]: xL[:3,:4]=xL[:3,:4].multiply(yL)
xL.multiply
代码实际上是:return self.tocsr().multiply(other)
我不知道哪种格式组合效率最高。
[我们可能会通过识别xM[:3,:4].multiply(yM)
将拥有更少,而不是更多的非零元素来绕过csr稀疏性警告。因此,至少暂时我们可以将xM.data
的某些值设置为0而不更改其他属性。我们稍后可以使用eliminate_zeros
进行清理。]
切片分配的替代方法是将y
扩展为x
的大小,并执行完全乘法。在这种情况下,我们需要用{1}填充y
。
密集版本将是:
In [478]: z=np.ones_like(x)
In [479]: z[:3,:4]=y
In [480]: x*z
对于稀疏矩阵,我们必须查看所需的填充。如果yM
只有少量行和/或列小于xM
,我怀疑我们可以有效地使用sparse.vstack
和hstack
。如果有很多填充,结果会有很多非零值,所以我们也可以制作密集的z
。
In [503]: zM = sparse.vstack((yM,np.ones((1,4),int)))
In [504]: zM = sparse.hstack((zM,np.ones((4,2),int)))
In [505]: zM.shape
Out[505]: (4, 6)
In [507]: zM.A
Out[507]:
array([[10, 11, 12, 13, 1, 1],
[14, 15, 16, 17, 1, 1],
[18, 19, 20, 21, 1, 1],
[ 1, 1, 1, 1, 1, 1]], dtype=int32)
In [511]: xM.multiply(zM).A
Out[511]:
array([[ 0, 11, 24, 39, 4, 5],
[ 84, 105, 128, 153, 10, 11],
[216, 247, 280, 315, 16, 17],
[ 18, 19, 20, 21, 22, 23]], dtype=int32)
构建此展开yM
的另一种方法是使用sparse.bmat
,它会从块中生成一个新矩阵。 bmat
的工作原理是构建coo
格式矩阵并连接所有row, col, data
属性,并从中创建新矩阵。
事实证明vstack
使用bmat
return bmat([[b] for b in blocks], format=format, dtype=dtype)
这构造了相同的4x6矩阵:
In [520]: zM = sparse.bmat([[yM, np.ones((3,2),int)],
[np.ones((1,4),int), np.ones((1,2),int)]])
=================
另一种可能性是从dok
问题中调整@ Vadim的sum
方法
https://stackoverflow.com/a/37241977/901925
它是迭代的,并且高度依赖于较小矩阵的非零元素的数量 - 但它非常灵活。
答案 1 :(得分:0)
可能有更多的pythonic方法可以做到这一点,但从数学上讲,这是一个非常简单的方法。
from scipy.sparse import csc_matrix, lil_matrix, find
## create example matrices, A, B, assume B has values that are not in A
A = csc_matrix( (5,5) )
A[1,1] = 3.0
A[2,2] = 2.0
B = csc_matrix( (5,5) )
B[1,1] = 5.0
B[2,2] = 10.0
B[3,3] = 50.0
C = lil_matrix( (5,5) ) ## C will be a modification of A;
## more efficient to do this with lil_matrix than csc_matrix;
## you can convert later if needed
(I,J,V) = find(A) ## get nonzero indices of A
(M,N,P) = find(B) ## get nonzero indices of B
C[M,N] = 1.0 ## set all B-corresponding elements to 1.0
C[I,J] = A[I,J] ## overwrite with corresponding elements in A
D = C.multiply(B) ## EDIT: per hpaulj's suggestion, using multiply(), which works with most any sparse matrix type