Converting a scipy coo_matrix to pytorch sparse tensor
Using the data as in the Pytorch docs, it can be done simply using the attributes of the Numpy coo_matrix
:
import torch
import numpy as np
from scipy.sparse import coo_matrix
coo = coo_matrix(([3,4,5], ([0,1,1], [2,0,2])), shape=(2,3))
values = coo.data
indices = np.vstack((coo.row, coo.col))
i = torch.LongTensor(indices)
v = torch.FloatTensor(values)
shape = coo.shape
torch.sparse.FloatTensor(i, v, torch.Size(shape)).to_dense()
Output
0 0 3
4 0 5
[torch.FloatTensor of size 2x3]