-
Hello, I was able to adapt the
Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
wsad1
Nov 21, 2022
Replies: 1 comment 1 reply
-
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
alzaia
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
MetaLayer
is to plug in blocks you like, depending on your use case.forward(self, x, edge_index, edge_attr, u, batch)
. For example, inGATConv
the interface isforward(x, edge_index, edge_attr, size, return_attention_wieghts)
which should work asNodeModel
, givenu
isNone
. If its notNone
u
will get passed assize
which might cause issues, but I am not sure of that.