-
Hi Matt, I'm trying to understand I saw Does this edge weight determine which nodes are going to be selected? Then how does this And after the clusters are determined, how can we define newly defined edge information, e.g. If I am wrong, feel free to correct my understanding. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The Graclus pooling is described in Section 2.2 here and proceeds as follows:
As such, the number of resulting nodes is approximately reduced by half, but might be slightly higher in cases where a node needs to form a cluster solely with itself. The new |
Beta Was this translation helpful? Give feedback.
The Graclus pooling is described in Section 2.2 here and proceeds as follows:
As such, the number of resulting nodes is approximately reduced by half, but might be slightly higher in cases where a node needs to form a cluster solely with itself.
The new
edge_index
is then given by the union of edges of this cluster, and other information such asedge_attr
orpos
are averaged.