-
Does it make sense to do a global add / mean / max pool when I only have 1 resulting feature per node (i.e node embedding dim = 1) for graph classification? Or should I just concatenate all of the features into one vector? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Apr 6, 2021
Replies: 1 comment 6 replies
-
This should work just fine. You need some way to aggregate the node features in a permutation-invariant fashion, so I do not recommend using concatenation. |
Beta Was this translation helpful? Give feedback.
6 replies
Answer selected by
mdanb
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should work just fine. You need some way to aggregate the node features in a permutation-invariant fashion, so I do not recommend using concatenation.