Replies: 1 comment 2 replies
-
Sorry for late reply :( Your observation is interesting. I don't have a good explanation yet, although I am wondering whether the usage of |
Beta Was this translation helpful? Give feedback.
2 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.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello experts,
I am using dense_diff_pool to pool nodes. But the graph topology after clustering seems to be trivial and I don't know what I am doing wrong.
My goal is to get a binary-valued adjacency matrix from the pooled matrix -- i.e. an adjacency matrix that contains entries of 0,1 determining the connectivity between the clusters of coarsened graph, based on the most probable connection. For random input, I would expect that each cluster would be connected to a random other cluster after pooling. This would to be something random like
[[1,0,0,0],
[0,0,1,0],
[0,0,1,0],
[0,0,0,1]].
Anyway I would not expect constant values.
Am I misunderstanding or misusing the dense_diff_pool? I cannot see my error here.
Thank you!
Beta Was this translation helpful? Give feedback.
All reactions