原文链接 : https://dreamhomes.github.io/posts/202012311027.html
稀疏矩阵
矩阵的稠密度
存储矩阵的一般方法是采用二维数组,其优点是可以随机地访问每一个元素,因而能够容易实现矩阵的各种运算。
对于稀疏矩阵,它通常具有很大的维度,有时甚大到整个矩阵(零元素)占用了绝大部分内存
采用二维数组的存储方法既浪费大量的存储单元来存放零元素,又要在运算中浪费大量的时间来进行零元素的无效运算。因此必须考虑对稀疏矩阵进行压缩存储(只存储非零元素)。
from scipy import sparse
help(sparse)
'''
Sparse Matrix Storage Formats
There are seven available sparse matrix types:
1. csc_matrix: Compressed Sparse Column format
2. csr_matrix: Compressed Sparse Row format
3. bsr_matrix: Block Sparse Row format
4. lil_matrix: List of Lists format
5. dok_matrix: Dictionary of Keys format
6. coo_matrix: COOrdinate format (aka IJV, triplet format)
7. dia_matrix: DIAgonal format
8. spmatrix: Sparse matrix base clas
'''
from scipy.sparse import csr_matrix
### 共有属性
mat.shape # 矩阵形状
mat.dtype # 数据类型
mat.ndim # 矩阵维度
mat.nnz # 非零个数
mat.data # 非零值, 一维数组
### COO 特有的
coo.row # 矩阵行索引
coo.col # 矩阵列索引
### CSR\CSC\BSR 特有的
bsr.indices # 索引数组
bsr.indptr # 指针数组
bsr.has_sorted_indices # 索引是否排序
bsr.blocksize # BSR矩阵块大小
import scipy.sparse as sp
### 转换矩阵格式
tobsr()、tocsr()、to_csc()、to_dia()、to_dok()、to_lil()
mat.toarray() # 转为array
mat.todense() # 转为dense
# 返回给定格式的稀疏矩阵
mat.asformat(format)
# 返回给定元素格式的稀疏矩阵
mat.astype(t)
### 检查矩阵格式
issparse、isspmatrix_lil、isspmatrix_csc、isspmatrix_csr
sp.issparse(mat)
### 获取矩阵数据
mat.getcol(j) # 返回矩阵列j的一个拷贝,作为一个(mx 1) 稀疏矩阵 (列向量)
mat.getrow(i) # 返回矩阵行i的一个拷贝,作为一个(1 x n) 稀疏矩阵 (行向量)
mat.nonzero() # 非0元索引
mat.diagonal() # 返回矩阵主对角元素
mat.max([axis]) # 给定轴的矩阵最大元素
### 矩阵运算
mat += mat # 加
mat = mat * 5 # 乘
mat.dot(other) # 坐标点积
resize(self, *shape)
transpose(self[, axes, copy])
Coordinate Matrix 对角存储矩阵
(row, col, data)
(或称为ijv format)的形式来存储矩阵中非零元素的信息row
、col
和 data
分别保存非零元素的行下标、列下标与值(一般长度相同)coo[row[k]][col[k]] = data[k]
,即矩阵的第 row[k]
行、第 col[k]
列的值为 data[k]
row[0] = 1
, column[0] = 1
时, data[0] = 2
,故 coo[1][1] = 2
row[3] = 0
, column[3] = 2
时, data[3] = 9
,故 coo[0][3] = 9
优点
tobsr()
、tocsr()
、to_csc()
、to_dia()
、to_dok()
、to_lil()
)缺点
coo_matrix(D)
:D代表密集矩阵;
coo_matrix(S)
:S代表其他类型稀疏矩阵
coo_matrix((M, N), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
,
coo_matrix((data, (i, j)), [shape=(M, N)]))
:三元组初始化
i[:]
: 行索引j[:]
: 列索引A[i[k], j[k]]=data[k]
data
:稀疏矩阵存储的值,是一个一维数组row
:与data
同等长度的一维数组,表征data
中每个元素的行号col
:与data
同等长度的一维数组,表征data
中每个元素的列号# 数据
row = [0, 1, 2, 2]
col = [0, 1, 2, 3]
data = [1, 2, 3, 4]
# 生成coo格式的矩阵
#
coo_mat = sparse.coo_matrix((data, (row, col)), shape=(4, 4), dtype=np.int)
# coordinate-value format
print(coo)
'''
(0, 0) 1
(1, 1) 2
(2, 2) 3
(3, 3) 4
'''
# 查看数据
coo.data
coo.row
coo.col
# 转化array
#
coo_mat.toarray()
'''
array([[1, 0, 0, 0],
[0, 2, 0, 0],
[0, 0, 3, 4],
[0, 0, 0, 0]])
'''
Compressed Sparse Row Matrix 压缩稀疏行格式
csr_matrix是按行对矩阵进行压缩的
通过 indices
, indptr
,data
来确定矩阵。
data
表示矩阵中的非零数据
对于第 i
行而言,该行中非零元素的列索引为 indices[indptr[i]:indptr[i+1]]
可以将 indptr
理解成利用其自身索引 i
来指向第 i
行元素的列索引
根据[indptr[i]:indptr[i+1]]
,我就得到了该行中的非零元素个数,如
index[i] = 3
且 index[i+1] = 3
,则第 i
行的没有非零元素index[j] = 6
且 index[j+1] = 7
,则第 j
行的非零元素的列索引为 indices[6:7]
得到了行索引、列索引,相应的数据存放在: data[indptr[i]:indptr[i+1]]
对于矩阵第 0
行,我们需要先得到其非零元素列索引
由 indptr[0] = 0
和 indptr[1] = 2
可知,第 0
行有两个非零元素。
indices[0:2] = [0, 2]
,且存放的数据为 data[0] = 8
, data[1] = 2
0
行的非零元素 csr[0][0] = 8
和 csr[0][2] = 2
对于矩阵第 4
行,同样我们需要先计算其非零元素列索引
由 indptr[4] = 3
和 indptr[5] = 6
可知,第 4
行有3个非零元素。
indices[3:6] = [2, 3,4]
,且存放的数据为 data[3] = 7
,data[4] = 1
,data[5] = 2
4
行的非零元素 csr[4][2] = 7
, csr[4][3] = 1
和 csr[4][4] = 2
优点
缺点
csr_matrix(D)
:D代表密集矩阵;
csr_matrix(S)
:S代表其他类型稀疏矩阵
csr_matrix((M, N), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
,
csr_matrix((data, (row_ind, col_ind)), [shape=(M, N)]))
三者关系:a[row_ind[k], col_ind[k]] = data[k]
csr_matrix((data, indices, indptr), [shape=(M, N)])
第i行的列索引存储在其中indices[indptr[i]:indptr[i+1]]
data[indptr[i]:indptr[i+1]]
data
:稀疏矩阵存储的值,一维数组indices
:存储矩阵有有非零值的列索引indptr
:类似指向列索引的指针数组has_sorted_indices
:索引 indices
是否排序# 生成数据
indptr = np.array([0, 2, 3, 3, 3, 6, 6, 7])
indices = np.array([0, 2, 2, 2, 3, 4, 3])
data = np.array([8, 2, 5, 7, 1, 2, 9])
# 创建矩阵
csr = sparse.csr_matrix((data, indices, indptr))
# 转为array
csr.toarray()
'''
array([[8, 0, 2, 0, 0],
[0, 0, 5, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 0, 0, 0],
[0, 0, 7, 1, 2],
[0, 0, 0, 0, 0],
[0, 0, 0, 9, 0]])
'''
Compressed Sparse Column Matrix 压缩稀疏列矩阵
csc_matrix是按列对矩阵进行压缩的
通过 indices
, indptr
,data
来确定矩阵,可以对比CSR
data
表示矩阵中的非零数据
对于第 i
列而言,该行中非零元素的行索引为indices[indptr[i]:indptr[i+1]]
可以将 indptr
理解成利用其自身索引 i
来指向第 i
列元素的列索引
根据[indptr[i]:indptr[i+1]]
,我就得到了该行中的非零元素个数,如
index[i] = 1
且 index[i+1] = 1
,则第 i
列的没有非零元素index[j] = 4
且 index[j+1] = 6
,则第 j
列的非零元素的行索引为 indices[4:6]
得到了列索引、行索引,相应的数据存放在: data[indptr[i]:indptr[i+1]]
对于矩阵第 0
列,我们需要先得到其非零元素行索引
indptr[0] = 0
和 indptr[1] = 1
可知,第 0
列行有1个非零元素。indices[0:1] = [0]
,且存放的数据为 data[0] = 8
0
行的非零元素 csc[0][0] = 8
对于矩阵第 3
列,同样我们需要先计算其非零元素行索引
indptr[3] = 4
和 indptr[4] = 6
可知,第 4
行有2个非零元素。indices[4:6] = [4, 6]
,且存放的数据为 data[4] = 1
,data[5] = 9
i
行的非零元素 csr[4][3] = 1
, csr[6][3] = 9
csc_matrix(D)
:D代表密集矩阵;
csc_matrix(S)
:S代表其他类型稀疏矩阵
csc_matrix((M, N), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
,
csc_matrix((data, (row_ind, col_ind)), [shape=(M, N)]))
a[row_ind[k], col_ind[k]] = data[k]
csc_matrix((data, indices, indptr), [shape=(M, N)])
indices[indptr[i]:indptr[i+1]]
data[indptr[i]:indptr[i+1]]
data
:稀疏矩阵存储的值,一维数组indices
:存储矩阵有有非零值的行索引indptr
:类似指向列索引的指针数组has_sorted_indices
:索引是否排序# 生成数据
row = np.array([0, 2, 2, 0, 1, 2])
col = np.array([0, 0, 1, 2, 2, 2])
data = np.array([1, 2, 3, 4, 5, 6])
# 创建矩阵
csc = sparse.csc_matrix((data, (row, col)), shape=(3, 3)).toarray()
# 转为array
csc.toarray()
'''
array([[1, 0, 4],
[0, 0, 5],
[2, 3, 6]], dtype=int64)
'''
# 按col列来压缩
# 对于第i列,非0数据行是indices[indptr[i]:indptr[i+1]] 数据是data[indptr[i]:indptr[i+1]]
# 在本例中
# 第0列,有非0的数据行是indices[indptr[0]:indptr[1]] = indices[0:2] = [0,2]
# 数据是data[indptr[0]:indptr[1]] = data[0:2] = [1,2],所以在第0列第0行是1,第2行是2
# 第1行,有非0的数据行是indices[indptr[1]:indptr[2]] = indices[2:3] = [2]
# 数据是data[indptr[1]:indptr[2] = data[2:3] = [3],所以在第1列第2行是3
# 第2行,有非0的数据行是indices[indptr[2]:indptr[3]] = indices[3:6] = [0,1,2]
# 数据是data[indptr[2]:indptr[3]] = data[3:6] = [4,5,6],所以在第2列第0行是4,第1行是5,第2行是6
Block Sparse Row Matrix 分块压缩稀疏行格式
基于行的块压缩,与csr类似,都是通过data
,indices
,indptr
来确定矩阵
与csr相比,只是data中的元数据由0维的数变为了一个矩阵(块),其余完全相同
块大小 blocksize
(R, C)
必须均匀划分矩阵 (M, N)
的形状。M % R = 0
和 N % C = 0
bsr_matrix(D)
:D代表密集矩阵;bsr_matrix(S)
:S代表其他类型稀疏矩阵bsr_matrix((M, N), [blocksize =(R,C), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
,(data, ij), [blocksize=(R,C), shape=(M, N)]
a[ij[0,k], ij[1,k]] = data[k]]
bsr_matrix((data, indices, indptr), [shape=(M, N)])
indices[indptr[i]:indptr[i+1]]
data[indptr[i]:indptr[i+1]]
data
:稀疏矩阵存储的值,一维数组indices
:存储矩阵有有非零值的列索引indptr
:类似指向列索引的指针数组blocksize
:矩阵的块大小has_sorted_indices
:索引 indices
是否排序# 生成数据
indptr = np.array([0,2,3,6])
indices = np.array([0,2,2,0,1,2])
data = np.array([1,2,3,4,5,6]).repeat(4).reshape(6,2,2)
# 创建矩阵
bsr = bsr_matrix((data, indices, indptr), shape=(6,6)).todense()
# 转为array
bsr.todense()
matrix([[1, 1, 0, 0, 2, 2],
[1, 1, 0, 0, 2, 2],
[0, 0, 0, 0, 3, 3],
[0, 0, 0, 0, 3, 3],
[4, 4, 5, 5, 6, 6],
[4, 4, 5, 5, 6, 6]])
优点
Dictionary of Keys Matrix 按键字典矩阵
key
存的是记录元素的位置信息的元组, value
是记录元素的具体值dok_matrix(D)
:D代表密集矩阵;dok_matrix(S)
:S代表其他类型稀疏矩阵dok_matrix((M, N), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
优点
缺点
dok = sparse.dok_matrix((5, 5), dtype=np.float32)
for i in range(5):
for j in range(5):
dok[i,j] = i+j # 更新元素
# zero elements are accessible
dok[(0, 0)] # = 0
dok.keys()
# {(0, 0), ..., (4, 4)}
dok.toarray()
'''
[[0. 1. 2. 3. 4.]
[1. 2. 3. 4. 5.]
[2. 3. 4. 5. 6.]
[3. 4. 5. 6. 7.]
[4. 5. 6. 7. 8.]]
'''
Linked List Matrix 链表矩阵
lil[(0, 0)] = 8
lil[(0, -1)] = 4
:第0行的最后一列元素为4lil[(4, 2)] = 5
:第4行第2列的元素为5优点
缺点
lil_matrix(D)
:D代表密集矩阵;lil_matrix(S)
:S代表其他类型稀疏矩阵lil_matrix((M, N), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
data
:存储矩阵中的非零数据rows
:存储每个非零元素所在的列(行信息为列表中索引所表示)# 创建矩阵
lil = sparse.lil_matrix((6, 5), dtype=int)
# 设置数值
# set individual point
lil[(0, -1)] = -1
# set two points
lil[3, (0, 4)] = [-2] * 2
# set main diagonal
lil.setdiag(8, k=0)
# set entire column
lil[:, 2] = np.arange(lil.shape[0]).reshape(-1, 1) + 1
# 转为array
lil.toarray()
'''
array([[ 8, 0, 1, 0, -1],
[ 0, 8, 2, 0, 0],
[ 0, 0, 3, 0, 0],
[-2, 0, 4, 8, -2],
[ 0, 0, 5, 0, 8],
[ 0, 0, 6, 0, 0]])
'''
# 查看数据
lil.data
'''
array([list([0, 2, 4]), list([1, 2]), list([2]), list([0, 2, 3, 4]),
list([2, 4]), list([2])], dtype=object)
'''
lil.rows
'''
array([[list([8, 1, -1])],
[list([8, 2])],
[list([3])],
[list([-2, 4, 8, -2])],
[list([5, 8])],
[list([6])]], dtype=object)
'''
Diagonal Matrix 对角存储格式
data
和 offsets
data
:对角线元素的值offsets
:第 i
个 offsets
是当前第 i
个对角线和主对角线的距离data[k:]
存储了 offsets[k]
对应的对角线的全部元素offsets[0] = 0
时,表示该对角线即是主对角线,相应的值为 [1, 2, 3, 4, 5]
offsets[2] = 2
时,表示该对角线为主对角线向上偏移2个单位,相应的值为 [11, 12, 13, 14, 15]
[13, 14, 15]
dia_matrix(D)
:D代表密集矩阵;dia_matrix(S)
:S代表其他类型稀疏矩阵dia_matrix((M, N), [dtype])
:构建一个shape为M*N的空矩阵,默认数据类型是d
dia_matrix((data, offsets)), [shape=(M, N)]))
:data[k,:]
存储着对角偏移量为 offset[k]
的对角值data
:存储DIA对角值的数组offsets
:存储DIA对角偏移量的数组# 生成数据
data = np.array([[1, 2, 3, 4], [5, 6, 0, 0], [0, 7, 8, 9]])
offsets = np.array([0, -2, 1])
# 创建矩阵
dia = sparse.dia_matrix((data, offsets), shape=(4, 4))
# 查看数据
dia.data
'''
array([[[1 2 3 4]
[5 6 0 0]
[0 7 8 9]])
'''
# 转为array
dia.toarray()
'''
array([[1 7 0 0]
[0 2 8 0]
[5 0 3 9]
[0 6 0 4]])
'''
save_npz
scipy.sparse.save_npz('sparse_matrix.npz', sparse_matrix)
sparse_matrix = scipy.sparse.load_npz('sparse_matrix.npz')
load_npz
# 从npz文件中读取
test_x = sparse.load_npz('./data/npz/test_x.npz')
a = np.arange(100000).reshape(1000,100)
a[10: 300] = 0
b = sparse.csr_matrix(a)
# 稀疏矩阵压缩存储到npz文件
sparse.save_npz('b_compressed.npz', b, True) # 文件大小:100KB
# 稀疏矩阵不压缩存储到npz文件
sparse.save_npz('b_uncompressed.npz', b, False) # 文件大小:560KB
# 存储到普通的npy文件
np.save('a.npy', a) # 文件大小:391KB
# 存储到压缩的npz文件
np.savez_compressed('a_compressed.npz', a=a) # 文件大小:97KB• 1
对于存储到npz文件中的CSR格式的稀疏矩阵,内容为:
data.npy
format.npy
indices.npy
indptr.npy
shape.npy