Any idea of do A dot B, without Memroy Error?

link|improve this question
Memory Error when numpy.dot(A,B), where A is 250000x108 float matrix, B is transpose of A. – Yanpeg Lin Oct 27 '11 at 10:49
I need that 250000x250000 matrix, dont know how to do it in this case, large scale data. – Yanpeg Lin Oct 27 '11 at 11:10
Are the arrays at least somewhat sparse? (i.e. do they contain a lot of zeros?) – Joe Kington Oct 27 '11 at 23:31
yes, it is sparse matrix. – Yanpeg Lin Oct 29 '11 at 12:43
Then use a sparse matrix library like scipy.sparse. docs.scipy.org/doc/scipy/reference/sparse.html numpy, by itself, doesn't include sparse matrices. They're in scipy.sparse. – Joe Kington Oct 29 '11 at 17:45
feedback

2 Answers

The result would be a 250000x250000 matrix, and would require about half a terabyte of RAM.

Did you mean numpy.dot(B, A)?

link|improve this answer
I need that 250000x250000 matrix, dont know how to do it in this case, large scale data. – Yanpeg Lin Oct 27 '11 at 11:01
feedback

The dot product you are trying to calculate produces a 250000x250000 array, which will require 500Gb of memory if you are using the default double precision floating point. Are you sure that is what you need?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.