有谁知道如何使用scipy.sparse包在稀疏矩阵上计算 SVD?
我知道我需要使用scipy.sparse.linalg.svds()。
但我做了如下:
from scipy.sparse import *
csr = csr_matrix(matrix)
U, s, V = linalg.svds( csr )
我有这个例外:
ValueError: matrix type must be 'f', 'd', 'F', or 'D'
有谁知道如何使用scipy.sparse包在稀疏矩阵上计算 SVD?
我知道我需要使用scipy.sparse.linalg.svds()。
但我做了如下:
from scipy.sparse import *
csr = csr_matrix(matrix)
U, s, V = linalg.svds( csr )
我有这个例外:
ValueError: matrix type must be 'f', 'd', 'F', or 'D'