-
Is there any way to use unsupervised GraphSAGE to classify nodes when only edges have features?
In other words, I have a Data like: |
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Nov 23, 2021
Replies: 1 comment 7 replies
-
There are two options to tackle this:
|
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
kokifish
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
There are two options to tackle this:
TransformerConv
(see here).scatter_mean(edge_attr, edge_index[1], ...)
. This can potentially also be learned as part of a GNN pipeline (scatter_mean(self.mlp(edge_attr), ...)
)