File size: 322 Bytes
8304f29 | 1 2 3 4 5 6 7 8 9 10 11 12 | import torch
class TorchGraphInterface(object):
def __init__(self):
pass
@staticmethod
def convert_sparse_mat_to_tensor(X):
coo = X.tocoo()
i = torch.LongTensor([coo.row, coo.col])
v = torch.from_numpy(coo.data).float()
return torch.sparse.FloatTensor(i, v, coo.shape) |