gpt4 book ai didi

python - 什么是 csr_matrix.A?

转载 作者:太空宇宙 更新时间:2023-11-04 04:02:57 24 4
gpt4 key购买 nike

<分区>

我最近看到这样的事情:

import numpy as np
row = np.array([0, 0, 1, 2, 2, 2])
col = np.array([0, 2, 2, 0, 1, 2])
data = np.array([1, 2, 3, 4, 5, 6])
from scipy.sparse import csr_matrix
csr_matrix((data, (row, col)), shape=(3, 3)).A

在这种情况下,它返回一个 numpy 数组:

array([[1, 0, 2],
[0, 0, 3],
[4, 5, 6]], dtype=int64)

这似乎只是稀疏矩阵的非稀疏表示,但我在 csr_matrix docs 中找不到它.有没有人确切知道 .A 的作用?

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