scipy.sparse.
save_npz#
- scipy.sparse.save_npz(file, matrix, compressed=True)[源代码]#
使用
.npz
格式将稀疏矩阵或数组保存到文件。- 参数:
- filestr 或类文件对象
数据将保存到的文件名(字符串)或打开的文件(类文件对象)。如果 file 是字符串,则如果文件名中尚不存在
.npz
扩展名,则将其附加到文件名。- matrix: spmatrix 或 sparray
要保存的稀疏矩阵或数组。支持的格式:
csc
、csr
、bsr
、dia
或coo
。- compressedbool,可选
允许压缩文件。默认值:True
另请参阅
scipy.sparse.load_npz
使用
.npz
格式从文件加载稀疏矩阵。numpy.savez
将多个数组保存到
.npz
存档中。numpy.savez_compressed
将多个数组保存到压缩的
.npz
存档中。
示例
将稀疏矩阵存储到磁盘,并重新加载
>>> import numpy as np >>> import scipy as sp >>> sparse_matrix = sp.sparse.csc_matrix([[0, 0, 3], [4, 0, 0]]) >>> sparse_matrix <Compressed Sparse Column sparse matrix of dtype 'int64' with 2 stored elements and shape (2, 3)> >>> sparse_matrix.toarray() array([[0, 0, 3], [4, 0, 0]], dtype=int64)
>>> sp.sparse.save_npz('/tmp/sparse_matrix.npz', sparse_matrix) >>> sparse_matrix = sp.sparse.load_npz('/tmp/sparse_matrix.npz')
>>> sparse_matrix <Compressed Sparse Column sparse matrix of dtype 'int64' with 2 stored elements and shape (2, 3)> >>> sparse_matrix.toarray() array([[0, 0, 3], [4, 0, 0]], dtype=int64)