为了账号安全,请及时绑定邮箱和手机立即绑定

有效地初始化一个 numpy 稀疏矩阵

有效地初始化一个 numpy 稀疏矩阵

守候你守候我 2021-09-11 10:33:56
我有一个包含 m 行和数组作为值的数组,它们指示列的索引并限制为一个大数 n。例如: Y = [[1,34,203,2032],...,[2984]]现在我想要一种有效的方法来初始化一个稀疏的 numpy 矩阵 X,其维度为 m,n,值对应于 Y(X[i,j] = 1,如果 j 在 Y[i] 中,否则 = 0)。
查看完整描述

1 回答

?
繁星coding

TA贡献1797条经验 获得超4个赞

您的数据已经接近 csr 格式,所以我建议使用它:


import numpy as np

from scipy import sparse

from itertools import chain


# create an example    

m, n = 20, 10

X = np.random.random((m, n)) < 0.1

Y = [list(np.where(y)[0]) for y in X]


# construct the sparse matrix

indptr = np.fromiter(chain((0,), map(len, Y)), int, len(Y) + 1).cumsum()

indices = np.fromiter(chain.from_iterable(Y), int, indptr[-1])

data = np.ones_like(indices)    

S = sparse.csr_matrix((data, indices, indptr), (m, n))

# or    

S = sparse.csr_matrix((data, indices, indptr))


# check

assert np.all(S==X)


查看完整回答
反对 回复 2021-09-11
  • 1 回答
  • 0 关注
  • 171 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信