Tagged Questions
1
vote
1answer
31 views
Why does scipy.sparse.linalg.svds return a ValueError?
Does anyone know that how to use scipy.sparse package to compute SVD on sparse matrix?
I know that I need to use scipy.sparse.linalg.svds().
But I did as bellow:
from scipy.sparse import *
csr = ...
1
vote
3answers
1k views
numpy linear algebra basic help
This is what I need to do-
I have this equation-
Ax = y
Where A is a rational m*n matrix (m<=n), and x and y are vectors of
the right size. I know A and y, I don't know what x is equal to. I
...
0
votes
1answer
49 views
Have memory error when using scipy to do SVD
I tried to use LSI to generate vectors to represent documents. I am using the svd package in Scipy library. But the program throws a memory error. The size of my matrix is 100*13057. Is this too big ...