Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
250 views

How to make file sparse?

If I have a big file containing many zeros, how can i efficiently make it a sparse file? Is the only possibility to read the whole file (including all zeroes, which may patrially be stored sparse) ...
6
votes
7answers
907 views

How does one reclaim zeroed blocks of a sparse file?

Consider a sparse file with 1s written to a portion of the file. I want to reclaim the actual space on disk for these 1s as I no longer need that portion of the sparse file. The portion of the file ...
5
votes
4answers
795 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) ) ...
4
votes
1answer
390 views

How to create a sparse file on NTFS?

I'm testing a sparse file. But my test code doesn't work well. HANDLE h = CreateFileW(L"D:\\sparse.test", GENERIC_READ|GENERIC_WRITE, ...
4
votes
1answer
259 views

sparse file usage in python

I'm creating sparse files in python as follows: >>> f = open('testfile', 'ab') >>> f.truncate(1024000) >>> f.close() when the file is done, it takes up 0 disk space, but ...
4
votes
6answers
1k views

Sparse constrained linear least-squares solver

This great SO answer points to a good sparse solver for Ax=b, but I've got constraints on x such that each element in x is >=0 an <=N. Also, A is huge (around 2e6x2e6) but very sparse with ...
4
votes
2answers
455 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); ...
3
votes
1answer
67 views

Matlab sparse tensor

Does Matlab support efficient operations on large sparse tensors? More specifically: Is there an elegant way, similar to sparse, of loading and storing a sparse tensor? As far as I can understand, ...
3
votes
2answers
104 views

C API Library for Solving Sparse Systems of Linear Equations?

I need to solve a large, sparse system of linear equations from a program written in D. Ideally I'd like a library with a D-style interface, but I doubt one exists. However, D can directly access C ...
3
votes
1answer
75 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 ...
3
votes
1answer
212 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 ...
3
votes
1answer
94 views

Sparse sorted numeric sequence class for .NET

I'm in need of very specific class, I would really like to know if there is existing one, so I don't have to re-implement it. I have a set of items. Each item has a numeric value associated whit it - ...
3
votes
4answers
839 views

Collaborative Filtering Program: What to do for a Pearson Score When There Isn't Enough Data

I'm building a recommendation engine using collaborative filtering. For similarity scores, I use a Pearson correlation. This is great most of the time, but sometimes I have users that only share a 1 ...
3
votes
3answers
487 views

Remote linux server to remote linux server large sparse files copy - How To?

I have two twins CentOS 5.4 servers with VMware Server installed on each. What is the most reliable and fast method for copying virtual machines files from one server to the other, assuming that I ...
3
votes
2answers
491 views

Using Sparse to check C code

Does anyone have experience with Sparse? I seem unable to find any documentation, so the warnings and errors it produces are unclear to me. I tried checking the mailing list and man page but there ...
3
votes
3answers
1k views

Overloading operator [] for a sparse vector

I'm trying to create a "sparse" vector class in C++, like so: template<typename V, V Default> class SparseVector { ... } Internally, it will be represented by an std::map<int, V> ...
2
votes
2answers
98 views

Fortran: sparse arrays or lists

Is there any implementation of sparse arrays or equivalent lists in Fortran. In the stage of computation of large data set we pass say an array of size of n=10000 to a subroutine to do some stuff on ...
2
votes
2answers
120 views

How to efficiently do aggregate on sparse data

I have a large dataset with 1008412 observations, the columns are customer_id (int), visit_date (Date, format: "2010-04-04"), visit_spend (float). This date function for the aggregate maps week ...
2
votes
2answers
116 views

sparse matrix overdetermined linear equation system c/c++ library

I need a library to solve Ax=b systems, where A is a non-symmetric sparse matrix, with 8 entry per row (and it might be quite big). I think a library that implements biconjugate gradient should be ...
2
votes
2answers
110 views

Is there a method of quickly determining whether a chunk read from a (sparse) file is all zeros?

Is there a method of quickly determining whether a (4KB-16MB) chunk read from a file is all zeros? You can iterate over the chunk, checking each byte. There are obvious optimisations, but it remains ...
2
votes
2answers
60 views

Accessing the indices of non-zero elements in a UBLAS sparse vector

How can I know the index of the first non-zero element in a sparse_vector in ublas and each subsequent nonzero element as well? The function begin() gives me an iterator that can be used to know the ...
2
votes
3answers
316 views

What is meant by sparse data/ datastore/ database?

Have been reading up on Hadoop and HBase lately, and came across this term- HBase is an open-source, distributed, sparse, column-oriented store... What do they mean by sparse? Does it have ...
2
votes
5answers
197 views

Implementation of extremely sparse arrays

I have an extremely sparse static array with 4 dimensions of 8192 each that I want to do lookups from (C#). Only 68796 of these 4.5 * 10^15 values are non-zero. What is the fastest way to do this, ...
2
votes
2answers
176 views

create a sparse BufferedImage in java

I have to create an image with very large resolution, but the image is relatively "sparse", only some areas in the image need to draw. For example with following code /* this take 5GB memory */ ...
2
votes
1answer
302 views

Sparse checkouts and svn:externals

I'm trying to do a sparse checkout of a folder containing externals, but none of the externals are being checked out. This issue seems to indicate that this behavior may be by design, or at least that ...
1
vote
1answer
46 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
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
2answers
36 views

Are Arrays really “sparsed” in JavaScript by default?

Are Arrays really "sparsed" in JavaScript by default? How to delete single array element with no index shift? What is the difference between: var a = new Array(10); var b = new Array(2); Do these ...
1
vote
1answer
85 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 ...
1
vote
5answers
177 views

What is a strided array?

There is also a counterpart which is called density array. What's does this mean? I have done some search but didn't get accurate information.
1
vote
1answer
126 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 ...
1
vote
0answers
461 views

Weka string attributes for sparse ARFF file

I am trying to use Weka for text classification. For this purpose, it makes sense to use the sparse ARFF data file format. Using Weka 3.7.2, I tried: Transforming a text directory to an Instances ...
1
vote
5answers
323 views

How can I create a series of months to join sparse data to?

I think this is a pretty common issue, but I don't know what the process is called, so I'll describe it with an example. The concept is that I want to join a sparse dataset to a complete series, such ...
1
vote
1answer
245 views

In R, when using named rows, can a sparse matrix column be added to another sparse matrix?

I have two sparse matrices, m1 and m2: > m1 <- Matrix(data=0,nrow=2, ncol=1, sparse=TRUE, dimnames=list(c("b","d"),NULL)) > m2 <- Matrix(data=0,nrow=2, ncol=1, sparse=TRUE, ...
1
vote
1answer
221 views

Solving Sparse Linear Problem With Some Known Boundary Values

I'm trying to solve a Poisson equation on a rectangular domain which ends up being a linear problem like Ax=b but since I know the boundary conditions, there are nodes where I have the solution ...
0
votes
1answer
60 views

Sparse matrix insert in c

I am trying to do an efficient sparse matrix multiplication. Right now I am reading the data into memory and this is how my data structure looks like: typedef struct node{ int x; int y; int value; ...
0
votes
1answer
63 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
89 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
43 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 ...
0
votes
3answers
67 views

Clustering a sparse dataset of binary vectors

If I have a sparse dataset where each data is described by a vector of 1000 elements, each element of this vector can be either 0 or 1 (a lot of 0 and some 1), do you know any distance function that ...
0
votes
0answers
73 views

How to use Google's Sparse Hash

In my project, I am asked to use Google's Sparse Hash. But I don't even know where to start. These are steps that I take and do not get my code even compiled: The sparsehash-1.11 code is in the same ...
0
votes
2answers
76 views

how does matlab solve large, symmetric and sparse linear systems

That is, when I do A\b for a very large, symmetric and sparse A, what algorithm does matlab use?
0
votes
1answer
84 views

Allocate disk space for multiple file downloads in Java

Is there any way of reliably "allocating" (reserving) hard disk space via "standard" Java (J2SE 5 or later)? Take for example the case of a multithreaded application, executing in a thread pool, ...
0
votes
2answers
62 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 ...
0
votes
1answer
43 views

API that handles boost ublas sparse OR dense matrices

I am a bit perplexed by the Boost ublas documentation. It does not seem clear to me that the sparse and dense matrix classes share a common parent class---which I believe is by design. But then how ...
0
votes
0answers
152 views

B+Tree and Sparse and Dense Index

I implementend a Sparse + Dense index to find elements in a fixed length text file. I need to search fast and no need to delete/insert/update. So my index has 2 level: The Sparse Index and the dense ...
0
votes
1answer
143 views

Converting from COO to Compressed sparse matrix

I wanted CSR files preferably from matrix market for my OpenCL library, I searched a lot for CSR generators in C but didn't get any. I find matrix market formats comfortable since they have defined ...
0
votes
1answer
52 views

CUSP kernel codes

I was wondering if I could find the kernel codes for the spmv and conversions in CUSP library. I scanned the whole library but couldn't find it. Is that proprietary or something like that??
0
votes
1answer
348 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 ...
0
votes
2answers
216 views

T-SQL: SELECT INTO sparse table?

I am migrating a large quantity of mostly empty tables into SQL Server 2008. The tables are vertical partitions of one big logical table. Problem is this logical table has more than 1024 columns. ...

1 2