gpt4 book ai didi

python - 如何将 numpy 数组 dtype=object 转换为稀疏矩阵?

转载 作者:行者123 更新时间:2023-12-01 01:00:12 26 4
gpt4 key购买 nike

我有一个 dtype = object 的 numpy 数组,其中包含多个其他元素数组,我需要将其转换为稀疏矩阵。

例如:

a = np.array([np.array([1,0,2]),np.array([1,3])])
array([array([1, 0, 2]), array([1, 3])], dtype=object)

我已经尝试过 Convert numpy object array to sparse matrix 给出的解决方案但没有成功。

In [45]: M=sparse.coo_matrix(a)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-45-d75020bb3a38> in <module>()
----> 1 M=sparse.coo_matrix(a)

/home/arturcastiel/.local/lib/python3.6/site-packages/scipy/sparse/coo.py in __init__(self, arg1, shape, dtype, copy)
183 self._shape = check_shape(M.shape)
184
--> 185 self.row, self.col = M.nonzero()
186 self.data = M[self.row, self.col]
187 self.has_canonical_format = True

ValueError: The truth value of an array with more than one element is ambiguous. Use a.any() or a.all()

正如评论中所解释的,这实际上是一个锯齿状数组。本质上,这个数组代表一个图,我必须将其转换为稀疏矩阵,以便我可以使用 scipy.sparse.csgraph.shortest_path 例程。

因此,

np.array([np.array([1,0,2]),np.array([1,3])])

应该变成这样的东西:

(1,1) 1
(1,2) 0
(1,3) 2
(2,1) 1
(2,2) 3

最佳答案

你不能。当它尝试查找 a 的非零元素时,会出现此错误。稀疏矩阵仅存储矩阵的非零元素。尝试一下

np.nonzero(a)  

如果你的数组包含列表而不是数组,它会起作用 - 有点:

In [615]: a = np.array([[1,0,1],[1,3]])                                              
In [616]: np.nonzero(a)
Out[616]: (array([0, 1]),)

In [618]: sparse.coo_matrix(a)
Out[618]:
<1x2 sparse matrix of type '<class 'numpy.object_'>'
with 2 stored elements in COOrdinate format>
In [619]: print(_)
(0, 0) [1, 0, 1]
(0, 1) [1, 3]

请注意,这是一个 (1,2) 形状的数组,有 2 个非零元素,这两个元素都是原始数组(对象)。

但是coo格式几乎没有处理。例如,它不能转换为 csr 进行计算:

In [622]: _618.tocsr()                                                               
---------------------------------------------------------------------------
TypeError: no supported conversion for types: (dtype('O'),)

如果数组不是锯齿状的,它可以制成一个有用的稀疏矩阵:

In [623]: a = np.array([[1,0,1],[1,3,0]])                                            
In [624]: a
Out[624]:
array([[1, 0, 1],
[1, 3, 0]])

In [626]: sparse.coo_matrix(a)
Out[626]:
<2x3 sparse matrix of type '<class 'numpy.int64'>'
with 4 stored elements in COOrdinate format>
In [628]: print(_)
(0, 0) 1
(0, 2) 1
(1, 0) 1
(1, 1) 3

请注意,0 值已被省略。在大型有用的稀疏矩阵中,90% 以上的元素为零。

===

这是一种从数组数组构造稀疏矩阵的方法。我根据 a 中的各个数组构建 coo 格式矩阵的 row,col,data 属性。

In [630]: a = np.array([np.array([1,0,1]),np.array([1,3])])                          
In [631]: row, col, data = [],[],[]
In [632]: for i,n in enumerate(a):
...: row.extend([i]*len(n))
...: col.extend(np.arange(len(n)))
...: data.extend(n)
...:
In [633]: row,col,data
Out[633]: ([0, 0, 0, 1, 1], [0, 1, 2, 0, 1], [1, 0, 1, 1, 3])
In [634]: M = sparse.coo_matrix((data, (row,col)))
In [635]: M
Out[635]:
<2x3 sparse matrix of type '<class 'numpy.int64'>'
with 5 stored elements in COOrdinate format>
In [636]: print(M)
(0, 0) 1
(0, 1) 0
(0, 2) 1
(1, 0) 1
(1, 1) 3
In [637]: M.A
Out[637]:
array([[1, 0, 1],
[1, 3, 0]])

另一种方法是填充a以创建一个二维数值数组,并从中创建稀疏数组。之前曾提出过填充锯齿状列表/数组的问题,并提出了各种解决方案。这是更容易记住和使用的方法之一:

In [658]: alist = list(zip(*(itertools.zip_longest(*a,fillvalue=0))))                                                                            
In [659]: alist
Out[659]: [(1, 0, 1), (1, 3, 0)]
In [661]: sparse.coo_matrix(alist)
Out[661]:
<2x3 sparse matrix of type '<class 'numpy.int64'>'
with 4 stored elements in COOrdinate format>
In [662]: _.A
Out[662]:
array([[1, 0, 1],
[1, 3, 0]])

关于python - 如何将 numpy 数组 dtype=object 转换为稀疏矩阵?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55870212/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com