1. todense()用法 将稀疏矩阵转化为稠密矩阵
adj=sp.coo_matrix(((1,1,1),([1,2,4],[3,4,2])),shape=(5,5),dtype=np.float32) print(adj) print("~~~") print(adj.todense())
2. forward() 函数用法
1. todense()用法 将稀疏矩阵转化为稠密矩阵
adj=sp.coo_matrix(((1,1,1),([1,2,4],[3,4,2])),shape=(5,5),dtype=np.float32) print(adj) print("~~~") print(adj.todense())
2. forward() 函数用法