Replies: 1 comment
-
I think you can use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, is there a way to induce the connected components in a graph? for example, given a graph with 5 nodes and
edge_index = torch.tensor([[0,1,2,3], [1,0,3,2]])
, we want to get node's label like:label = torch.tensor([0,0,1,1,2])
, is it possible in PyG? @rusty1sBeta Was this translation helpful? Give feedback.
All reactions