You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think that this work cannot be applied to large-scale graphs for the reason that calculating the adj through your method needs eigen decomposition and to_dense() method needs large memory available. eig_value, left_vector = scipy.linalg.eig(p_ppr.numpy(),left=True,right=False) p_dense = torch.sparse.FloatTensor(edge_index, p, torch.Size([num_nodes,num_nodes])).to_dense()
The text was updated successfully, but these errors were encountered:
I think that this work cannot be applied to large-scale graphs for the reason that calculating the adj through your method needs eigen decomposition and to_dense() method needs large memory available.
eig_value, left_vector = scipy.linalg.eig(p_ppr.numpy(),left=True,right=False) p_dense = torch.sparse.FloatTensor(edge_index, p, torch.Size([num_nodes,num_nodes])).to_dense()
The text was updated successfully, but these errors were encountered: