Possible to obtain edges chosen by graclus? #2430
Answered
by
rusty1s
cameronosmith
asked this question in
Q&A
-
Hi, is there a way I can obtain the indices of the edges that graclus chooses? Also, is EdgePool basically graclus clustering but with predicting the edge weights first? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Apr 21, 2021
Replies: 1 comment 4 replies
-
|
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
cameronosmith
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
graclus
does not choose edges, it will cluster nodes. The resulting adjacency matrix is then given by the union of edges of clustered nodes.EdgePooling
is different in that it will compute a score for each edge, and will contract edges according to that score.