-
Hey, would love to hear your advice. What would be the best choice of network for graph embedding that can encapsulate it's features in a "good" way? I know the question is very general, maybe I should rephrase it: What would be the criteria for choosing specific graph embedding network ? |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
May 10, 2021
Replies: 1 comment 1 reply
-
It's hard to give a general advice on this one. However, there exists GNNs that are more suitable for a given task than others., e.g.:
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
ilyalasy
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's hard to give a general advice on this one. However, there exists GNNs that are more suitable for a given task than others., e.g.:
GIN
orPANConv
.GATConv
orTransformerConv
is a great choice.GCNConv
orSAGEConv
might be the way to go.NNConv
orGMMConv
.