0
votes
3answers
34 views

How to transform an integer value sparse matrix to 0/1 value sparse matrix, Python

I have a sparse matrix from the sklearn bag-of-words vectorizer. It's a csr_matrix and its elements represent word frequency in a document. But now what I need is the 0/1 matrix where 1 represents the ...
3
votes
0answers
106 views

How to parallelise scipy sparse matrix multiplication

I have a large sparse matrix X in scipy.sparse.csr_matrix format and I would like to multiply this by a numpy array W making use of parallelism. After some research I discovered I need to use Array in ...
3
votes
1answer
112 views

Scipy Sparse Matrix - Dense Vector Multiplication Performance - Blocks vs Large Matrix

I have a number of scipy sparse matrices (currently in CSR format) that I need to multiply with a dense numpy 1D vector. The vector is called G: print G.shape, G.dtype (2097152,) complex64 Each ...
1
vote
1answer
31 views

scipy sparse matrices, copy argument

What is the function of copy argument in construction of scipy sparse arrays? scipy.sparse.lil_matrix(arg1, shape=None, dtype=None, copy=False) It doesn't seem to do anything! When I construct a ...
1
vote
1answer
41 views

How to do operations with two vectors of different format in python

One of my vector is in format scipy.sparse.csr.csr_matrix, the other is numpy.ndarray. I have an experimental code below: import numpy as np from scipy.sparse import csr_matrix x = np.arange(5)+1 y ...
2
votes
1answer
54 views

scipy.sparse __add__ method being called when adding to a regular numpy ndarray?

I'm calculating the dot product between a scipy.sparse matrix (CSC) and a numpy ndarray vector: >>> print type(np_vector), np_vector.shape <type 'numpy.ndarray'> (200,) >>> ...
3
votes
2answers
94 views

Substitute for numpy broadcasting using scipy.sparse.csc_matrix

Ok I've been at this for long enough that I'm willing to ask for help. I had in my code the following expression: a = (b / x[:, np.newaxis]).sum(axis=1) where b is an ndarray of shape (M, N), and x ...
2
votes
1answer
72 views

efficient way to get the max of each row for large sparse matrix

I have a large sparse matrix and I want to get the maximum value for each row. In numpy, I can call numpy.max(mat, axis=1), but I can not find similar function for scipy sparse matrix. Is there any ...
2
votes
1answer
42 views

Unexpected difference of spsolve and solve

I need to solve linear equations with varied sizes. Sometime the size may be 0 or 1 in which cases some errors will happen. For example, import numpy as np from numpy.linalg import solve from ...
3
votes
1answer
47 views

(Python) How do you get the mean and std of a column in a csr_matrix?

I have a sparse 988x1 vector (a column in a csr_matrix) created through scipy.sparse. Is there a way to gets its mean and standard deviation without having to convert the sparse matrix to a dense one? ...
1
vote
1answer
144 views

Slicing a scipy.sparse.lil_matrix in rows and columns

I would like to extract specific rows and columns from a scipy sparse matrix - probably lil_matrix will be the best choice here. It works fine here: from scipy import sparse ...
2
votes
1answer
115 views

Adding a very repetitive matrix to a sparse one in numpy/scipy?

I'm trying to implement a function in NumPy/Scipy to compute Jensen-Shannon divergence between a single (training) vector and a large number of other (observation) vectors. The observation vectors are ...
2
votes
1answer
158 views

Efficient slicing of matrices using matrix multiplication, with Python, NumPy, SciPy

I want to reshape a 2d scipy.sparse.csr.csr_matrix(let us call it A) to a 2d numpy.ndarray (let us call this B). A could be >shape(A) (90, 10) then B should be >shape(B) (9,10) where ...
3
votes
1answer
216 views

scipy.sparse dot extremely slow in Python

The following code will not even finish on my system: import numpy as np from scipy import sparse p = 100 n = 50 X = np.random.randn(p,n) L = sparse.eye(p,p, format='csc') X.T.dot(L).dot(X) Is ...
3
votes
3answers
158 views

How to efficiently make new matrix from sum of blocks from bigger sparse matrix

I have a large scipy sparse symmetric matrix which I need to condense by taking the sum of blocks to make a new smaller matrix. For example, for a 4x4 sparse matrix A I will like to make a 2x2 matrix ...
3
votes
1answer
146 views

Memory efficient storage of many large scipy sparse matrices

I need to store around 50.000 scipy sparse csr matrices where each matrix is a vector of length 3.7Million: x = scipy.sparse.csr_matrix((3.7Mill,1)) I currently store them into a simple dictionary, ...
1
vote
1answer
166 views

scipy.sparse.csr_matrix replace values if not zero

I have the following situation: I have two csr_matrices (in the form of a vector) of equal shape and I want to replace values of vector u if the corresponding value of vector v is not zero. So: ...
1
vote
1answer
343 views

scipy.sparse : Set row to zeros

Suppose I have a matrix in the CSR format, what is the most efficient way to set a row (or rows) to zeros? The following code runs quite slowly: A = A.tolil() A[indices, :] = 0 A = A.tocsr() I had ...
2
votes
1answer
381 views

Scipy's sparse eigsh() for small eigenvalues

I'm trying to write a spectral clustering algorithm using NumPy/SciPy for larger (but still tractable) systems, making use of SciPy's sparse linear algebra library. Unfortunately, I'm running into ...
2
votes
2answers
62 views

turn around sparse matrix

I got some sparse matrix like this >>>import numpy as np >>>from scipy.sparse import * >>>A = csr_matrix((np.identity(3))) >>>print A (0, 0) 1.0 (1, 1) ...
1
vote
1answer
211 views

Determining the byte size of a scipy.sparse matrix?

Is it possible to determine the byte size of a scipy.sparse matrix? In NumPy you can determine the size of an array by doing the following: import numpy as np print(np.zeros((100, 100, 100).nbytes) ...
4
votes
1answer
605 views

Access value, column index, and row_ptr data from scipy CSR sparse matrix

I have a large matrix that I would like to convert to sparse CSR format. When I do: import scipy as sp Ks = sp.sparse.csr_matrix(A) print Ks Where A is dense, I get (0, 0) -2116689024.0 (0, 1) ...
3
votes
2answers
247 views

Sorting in Sparse Matrix

I have a sparse matrix. I need to sort this matrix row-by-row and create another [sparse] matrix. Code may explain it better: # for `rand` function, you need newer version of scipy. from scipy.sparse ...
2
votes
2answers
310 views

Convert sparse matrice in list of list in python

I want to convert a sparse matrice in list of non zero index like this : >>> row = array([0,2,2,0,1,2]) >>> col = array([0,0,1,2,2,2]) >>> data = array([1,1,1,1,1,1]) ...
3
votes
2answers
319 views

Efficient way of taking Logarithm function in a sparse matrix

I have a big sparse matrix. I want to take log4 for all element in that sparse matrix. I try to use numpy.log() but it doesn't work with matrices. I can also take logarithm row by row. Then I ...
1
vote
2answers
469 views

Given a matrix of type `scipy.sparse.coo_matrix` how to determine index and value of maximum of each row?

Given a sparse matrixR of type scipy.sparse.coo_matrix of shape 1.000.000 x 70.000 I figured out that row_maximum = max(R.getrow(i).data) will give me the maximum value of the i-th row. What I ...
2
votes
1answer
482 views

How to calculate diagonal degree matrix from a huge (scipy.sparse) matrix?

Given a quadratic matrix of dimension 1 million I want to calculate the diagonal degree matrix. The diagonal degree matrix is defined as a diagonal matrix, which has the count of non zero values per ...
1
vote
1answer
170 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 = ...
0
votes
1answer
402 views

what is wrong with importing modules in scipy , is it a bug?

ok , i don't think, i can explain this problem in words so , here is the snippet of ipython session , where i import scipy , in order to construct a sparse matrix. In [1]: import scipy as sp In [2]: ...
0
votes
1answer
725 views

Python - sparse vectors/distance calculation

I'm looking for dynamically growing vectors in Python, since I don't know their length in advance. In addition, I would like to calculate distances between these sparse vectors, preferably using the ...
0
votes
1answer
377 views

Sparse Matrix: ValueError: matrix type must be 'f', 'd', 'F', or 'D'

I want to do SVD on a sparse matrix by using scipy: from svd import compute_svd print("The size of raw matrix: "+str(len(raw_matrix))+" * "+str(len(raw_matrix[0]))) from scipy.sparse import ...
4
votes
1answer
242 views

Python left multiplication of of a matrix with inverse of a sparse matrix

I'm trying to calculate an expression of the form K = P*C.T*S^-1 (implementation of a Kalman filter) All the involved matrices are sparse, and I would of course like to avoid calculating the actual ...
1
vote
1answer
310 views

Issue converting Matlab sparse() code to numpy/scipy with csc_matrix()

I'm a bit of a newbie to both Matlab and Python so, many apologies if this question is a bit dumb... I'm trying to convert some Matlab code over to Python using numpy and scipy and things were going ...
3
votes
2answers
780 views

slicing sparse (scipy) matrix

I would appreciate any help, to understand following behavior when slicing a lil_matrix (A) from the scipy.sparse package. Actually, I would like to extract a submatrix based on an arbitrary index ...
3
votes
1answer
380 views

scipy.sparse default value

The sparse matrix format (dok) assumes that values of keys not in dictionary are equal to zero. Is there any way to make it use a default value other than zero? Also, is there a way to calculate log ...
4
votes
1answer
559 views

pointwise operations on scipy.sparse matrices

Is it possible to apply for example numpy.exp or similar pointwise operators to all elements in a scipy.sparse.lil_matrix or another sparse matrix format? import numpy from scipy.sparse import ...
0
votes
1answer
726 views

how to add sparse matrices in python

I want to know how to add sparse matrices in python. I have a program that breaks a big task into subtasks and distributes them across several cpus. Each subtask yields a result (a scipy sparse matrix ...
13
votes
4answers
3k views

Iterating through a scipy.sparse vector (or matrix)

I'm wondering what the best way is to iterate nonzero entries of sparse matrices with scipy.sparse. For example, if I do the following: from scipy.sparse import lil_matrix x = lil_matrix( (20,1) ) ...
6
votes
2answers
735 views

Vectorization of index operation for a scipy.sparse matrix

The following code runs too slowly even though everything seems to be vectorized. from numpy import * from scipy.sparse import * n = 100000; i = xrange(n); j = xrange(n); data = ones(n); ...