Quantcast
Channel: Active questions tagged python - Stack Overflow
Viewing all articles
Browse latest Browse all 13891

Saving a scipy.sparse matrix directly as a regular txt file

$
0
0

I have a scipy.sparse matrix (csr_matrix()). But I need to save it to a file not in the .npz format but as a regular .txt or .csv file. My problem is that I don't have enough memory to convert the sparse matrix into a regular np.array() and then save it to a file. Is there a way to have the data as a sparse matrix in memory but save it directly as a regular matrix to the disk? Or is there a way to "unzip" a .npz file without loading it into memory inside Python?


Viewing all articles
Browse latest Browse all 13891

Trending Articles