美文网首页
scipy的稀疏矩阵转换成torch的sparse tensor

scipy的稀疏矩阵转换成torch的sparse tensor

作者: heishanlaoniu | 来源:发表于2021-01-10 21:13 被阅读0次

def scipy_sparse_mat_to_torch_sparse_tensor(sparse_mx):
    """
    将scipy的sparse matrix转换成torch的sparse tensor.
    """
    sparse_mx = sparse_mx.tocoo().astype(np.float32)
    indices = torch.from_numpy(
        np.vstack((sparse_mx.row, sparse_mx.col)).astype(np.int64))
    values = torch.from_numpy(sparse_mx.data)
    shape = torch.Size(sparse_mx.shape)
    return torch.sparse.FloatTensor(indices, values, shape)

相关文章

网友评论

      本文标题:scipy的稀疏矩阵转换成torch的sparse tensor

      本文链接:https://www.haomeiwen.com/subject/odmlaktx.html