gpt4 book ai didi

python - SciPy/NumPy : Normalize a csr_matrix

转载 作者:行者123 更新时间:2023-11-28 16:45:58 24 4
gpt4 key购买 nike

我正在尝试标准化 csr_matrix:

<5400x6845 sparse matrix of type '<type 'numpy.float64'> with 91833 stored elements in Compressed Sparse Row format>

我试过的是这样的:

import numpy as np
from scipy import sparse

# ve is my csr_matrix
ve_sum = ve.sum(axis=1)
ve_sums = sparse.csr_matrix(np.tile(ve_sum, (1, ve.shape[1]))) # <-- here I get MemoryError
n_ve = ve/ve_sums

这显然不是进行这种简单归一化的正确方法。

正确的做法是什么?

最佳答案

# Normalize the rows of ve.
row_sums = np.array(ve.sum(axis=1))[:,0]
row_indices, col_indices = ve.nonzero()
ve.data /= row_sums[row_indices]

快速谷歌搜索也揭示了这一点。

关于python - SciPy/NumPy : Normalize a csr_matrix,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13705435/

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