Is it possible to use norm.MessageNorm
in a non-custom message passing layer?
#9426
Replies: 1 comment
-
I think you should be able to just do this post GNN layer execution: conv = GCNConv(16, 16)
norm = MessageNorm()
out = conv(x, edge_index)
out = norm(x, out) |
Beta Was this translation helpful? Give feedback.
0 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.
-
Suppose you have a GNN that consists of some
GCNConv
(or any other built in) layers. Is there a way to use theMessageNorm
to normalise the messages that are calculated internally to the method? I mean without manually adapting the source code yourself.Beta Was this translation helpful? Give feedback.
All reactions