0
votes
0answers
8 views

scipy multiple sparse representations of the same data

Scipy documentation states that constructing all different types of sparse matrices (e.g. lil_matrix or csr_matrix) gives an option to copy the data if needed, while the default setting is not to ...
1
vote
1answer
50 views

Reshape sparse matrix efficiently, Python, SciPy 0.12

In another post regarding resizing of a sparse matrix in SciPy the accepted answer works when more rows or columns are to be added, using scipy.sparse.vstack or hstack, respectively. In SciPy 0.12 the ...
1
vote
1answer
88 views

Translate matlab code to python (scipy)

I' trying to translate this matlab code to python: T = length(z); lambda = 10; I = speye(T) D2 = spdiags(ones(T-2,1)*[1 -2 1],[0:2],T-2,T); z_stat = (I-inv(I + lambda^2*D2'*D2))*z; What I got at ...
2
votes
1answer
65 views

How to Extend Scipy Sparse Matrix returned by sklearn TfIdfVectorizer to hold more features

I am working on a text classification problem using scikit-learn classifiers and text feature extractor, particularly TfidfVectorizer class. The problem is that I have two kinds of features, the ...
3
votes
0answers
50 views

Scipy sparse matrices - purpose and usage of different implementations

Scipy has many different types of sparse matrices available. What are the most important differences between these types, and what is the difference in their intended usage? I'm developing a code ...
2
votes
2answers
120 views

Rearrange sparse arrays by swapping rows and columns

I have large but sparse arrays and I want to rearrange them by swapping rows an columns. What is a good way to do this in scipy.sparse? Some issues I don't think that permutation matrices are well ...
1
vote
1answer
160 views

How to convert co-occurrence matrix to sparse matrix

I am starting dealing with sparse matrices so I'm not really proficient on this topic. My problem is, I have a simple coo-occurrences matrix from a word list, just a 2-dimensional co-occurrence matrix ...
1
vote
3answers
39 views

How to determine SciPy matrix “type” of a variable M

Is there a method or a reliable way to determine if a given matrix M was created via coo_matrix() or csc_matrix() / csr_matrix()? How could I write a method like this: MATRIX_TYPE_CSC = 1 ...
4
votes
1answer
43 views

Bulk zeroing of elements in a scipy.sparse_matrix

I've got a scipy.sparse_matrix A and I want to zero-out a decently-sized fraction of the elements. (In the matrices I'm working with today, A has about 70M entries and I want to zero-out about 700K ...
3
votes
1answer
113 views

Boolean operations on scipy.sparse matrices

I have a set of sparse matrices filled with boolean values that I need to perform logical operations on (mostly element-wise OR). as in numpy, summing matrices with dtype='bool' gives the ...
1
vote
1answer
105 views

Scipy: Sparse Matrix giving incorrect values

Below is my code for generating my sparse matrix: import numpy as np import scipy def sparsemaker(X, Y, Z): 'X, Y, and Z are 2D arrays of the same size' x_, row = np.unique(X, ...
2
votes
1answer
89 views

Python package to estimate Perron-Frobenius Eigenvalue of real, square, non-negative matrix

Is there an optimized package or method that estimates the Perron-Frobenius eigenvalue of a real, square, non-negative matrix? This could be significantly faster (especially for large and/or sparse ...
2
votes
1answer
79 views

How to best row-scale a SciPy sparse matrix?

I've got a SciPy sparse matrix A, let's say in CSR format, and a vector v of matching length. What's the best way of row-scaling A with v, i.e., performing diag(v) * A?
5
votes
3answers
243 views

Using scipy sparse matrices to solve system of equations

This is a follow up to How to set up and solve simultaneous equations in python but I feel deserves its own reputation points for any answer. For a fixed integer n, I have a set of 2(n-1) ...
3
votes
1answer
185 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 ...
0
votes
2answers
143 views

Find given row in a scipy sparse matrix?

Question is very simple: Let's say I have a given row r from scipy sparse matrix M (100,000X500,000), I want to find its location/index in the M matrix? How can I accomplish this in an efficient way? ...
0
votes
0answers
75 views

What is the fastest way to slice a scipy.sparse matrix?

I normally use matrix[:, i:] It seems not work as fast as I expected.
0
votes
1answer
68 views

Error memory-mapping a file: Array can't be memory-mapped: Python objects in dtype

My application needs to store and access a very large matrix. I though I would use dok_matrix for this, but I can't seem to be able to memory-map the file. I get the error: Array can't be ...
1
vote
2answers
81 views

50Kx50K sparse matrix

I need to hold a 50,000x50,000 sparse matrix/2d-array, with ~5% of the cells, uniformly distributed, being non-empty. I will need to: edit I need to do this in numpy/scipy, sorry if wasn't clear. ...
0
votes
1answer
169 views

Multiplication operator for scipy sparse matrices

I'm a little bit confused by the behavior of the multiplication operator * when scipy sparse matrices are involved. It seems the operator implements matrix multiplication, not component-wise ...
3
votes
3answers
166 views

Calculate subset of matrix multiplication

When I have two non-sparse matrices A and B, is there a way to efficiently calculate C=A.T.dot(B) when I only want a subset of the elements of C? I have the desired indices of C stored in CSC format ...
4
votes
1answer
266 views

dot products on sparse matrices

I'm trying to take the dot product of a row in a sparse matrix with the transpose of that row using Python. I have a huge sparse matrix called X2. And I am saving the results (which is supposed to be ...
3
votes
1answer
82 views

minimum of a sparse matrix?

There does not seem to be a method in scipy.sparse which gives the minimum of a sparse matrix. In particular, I seek the minimum of the columns. No method appears in the docs and numpy minimum does ...
3
votes
1answer
122 views

Scipy Sparse Matrices - Inconsistent Sums

I have a sparse matrix that I arrived at through a complicated bunch of calculations which I cannot reproduce here. I will try to find a simpler example of this. For now, does anyone know how it ...
1
vote
1answer
270 views

Slicing Sparse Matrices in Scipy — Which Types Work Best?

The SciPy Sparse Matrix tutorial is very good -- but it actually leaves the section on slicing un(der)developed (still in outline form -- see section: "Handling Sparse Matrices"). I will try and ...
6
votes
1answer
249 views

Counting with scipy.sparse

I am using the Python sklearn libraries. I have 150,000+ sentences. I need an array-like object, where each row is for a sentences, each column corresponds to a word, and each element is the number ...
3
votes
2answers
389 views

Multiplying Numpy/Scipy Sparse and Dense Matrices Efficiently

I'm working to implement the following equation: X =(Y.T * Y + Y.T * C * Y) ^ -1 Y is a (n x f) matrix and C is (n x n) diagonal one; n is about 300k and f will vary between 100 and 200. As part of ...
0
votes
2answers
181 views

How to calculate the generalized inverse of a Sparse Matrix in scipy

I have a sparse matrix W, when I use linalg.pinv(W), it throws some errors: Traceback (most recent call last): File "/Users/ad9075/PycharmProjects/bednmf/test.py", line 14, in testNmfRun ...
0
votes
1answer
91 views

Sparse-Dense multiplication in Python

I am using Python 3.23 and I am want to multiply a sparse VECTOR with a dense MATRIX. The idea of first unfolding the sparse vector into a dense one and then multiplying is of course silly from any ...
1
vote
2answers
150 views

Scipy sparse dia_matrix solver

In a scipy program I'm creating a dia_matrix (sparse matrix type) with 5 diagonals. The centre diagonal the +1 & -1 diagonals and the +4 & -4 diagonals (usually >> 4, but the principle is the ...
7
votes
2answers
700 views

Efficient way to normalize a Scipy Sparse Matrix

I'd like to write a function that normalizes the rows of a large sparse matrix (such that they sum to one). from pylab import * import scipy.sparse as sp def normalize(W): z = W.sum(0) z[z ...
1
vote
2answers
71 views

taking the log of every element in a sparse matrix

How can you take the log base 10 of every element in a sparse matrix (COO)? >>print type(X) <class 'scipy.sparse.coo.coo_matrix'> I've tried this but it doesn't work: import math ...
0
votes
1answer
165 views

combine matrix and sparse matrix

How can you add a 1-column matrix to a sparse matrix, or add a sparse matix to a column matrix (either way)? It shouldn't replace the data, just join it into one data type. The sparse matrix: ...
4
votes
1answer
240 views

Multiplying elements in a sparse array with rows in matrix

If you have a sparse matrix X: >> X = csr_matrix([[0,2,0,2],[0,2,0,1]]) >> print type(X) >> print X.todense() <class 'scipy.sparse.csr.csr_matrix'> [[0 2 0 2] [0 2 0 ...
1
vote
1answer
271 views

element-wise operations on a sparse matrix

If you have a sparse matrix X: >> print type(X) <class 'scipy.sparse.csr.csr_matrix'> ...How can you sum the squares of each element in each row, and save them into a list? For example: ...
3
votes
0answers
352 views

Using sparse matrices/online learning in Naive Bayes (Python, scikit)

I'm trying to do Naive Bayes on a dataset that has over 6,000,000 entries and each entry 150k features. I've tried to implement the code from the following link: Implementing Bag-of-Words Naive-Bayes ...
3
votes
1answer
140 views

splitting a sparse matrix into two

Question: How can I split 1 sparse matrix into 2, based on the values in a list? That is, I have a sparse matrix X: >>print type(X) <class 'scipy.sparse.csr.csr_matrix'> that I ...
2
votes
1answer
87 views

differences between scipy.sparse.linalg.lsmr and scipy.sparse.linalg.lsqr

Does anybody know when is better to choose which? They seem the same to me... lsmr lsqr
7
votes
4answers
264 views

Efficiently accumulating a collection of sparse scipy matrices

I've got a collection of O(N) NxN scipy.sparse.csr_matrix, and each sparse matrix has on the order of N elements set. I want to add all these matrices together to get a regular NxN numpy array. (N ...
5
votes
1answer
712 views

Multiplying large sparse matrices in python

I would like to multiply two large sparse matrices. The first is 150,000x300,000 and the second is 300,000x300,000. The first matrix has about 1,000,000 non-zero items and the second matrix has ...
2
votes
2answers
352 views

numpy array to scipy.sparse matrix

Given an arbitrary numpy array (ndarray), is there a function or a short way to convert it to a scipy.sparse matrix? I'd like something that works like: A = numpy.array([0,1,0],[0,0,0],[1,0,0]) S ...
3
votes
2answers
318 views

How to efficiently remove columns from a sparse matrix that only contain zeros?

What is the best way to efficiently remove columns from a sparse matrix that only contain zeros. I have a matrix which I have created and filled with data: matrix = sp.sparse.lil_matrix((100, 100)) ...
3
votes
1answer
417 views

Iterating over scipy sparse matrix by column

I'm trying to figure out how to iterate through a scipy sparse matrix by column. I'm trying to compute the sum of each column, then weight the members of that column by that sum. What I want to do ...
4
votes
1answer
118 views

Scipy boundary conditions on a sparse matrix pattern

My system is best described by a diagonal sparse matrix (Poisson). I have my diagonal sparse matrix, however, I want to change the boundary conditions (ie the "edges" of my matrix) to zero. It must ...
1
vote
3answers
534 views

How to create a diagonal sparse matrix in SciPy

I am trying to create a sparse matrix which has a 2D pattern run down the diagonal. This is probably easiest to explain with a quick example. Say my pattern is: [1,0,2,0,1]... I want to create a ...
3
votes
2answers
236 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
1answer
320 views

Access scipy.sparse.csr_matrix, all rows with none zero column j

I hope my question is clear, but let's say I have a sparse matrix like following: import numpy as np a = np.eye(5, 5) a[0,3]=1 a[3,0]=1 a[4,2]=1 a[3,2]=1 a = csr_matrix(a) [[ 1. 0. 0. 1. 0.] [ ...
3
votes
1answer
240 views

easy sampling of vectors from a sparse matrix, and creating a new matrix from the sample (python)

This question has two parts (maybe one solution?): Sample vectors from a sparse matrix: Is there an easy way to sample vectors from a sparse matrix? When I'm trying to sample lines using ...
2
votes
2answers
293 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]) ...
1
vote
2answers
229 views

Data Exchange between C++ Application (Sci)Python

I am developing a c++/Qt software for scientific purposes. While the Eigen library provides me with many operations to analyse matrices, it is still painful/hard to design a gui for all possible ...

1 2