invariant and equivariant graph networks #2849
JoshuaMitton
started this conversation in
Ideas
Replies: 1 comment 7 replies
-
I think the best way to implement that is via |
Beta Was this translation helpful? Give feedback.
7 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.
-
Hi, is it possible to implement the graph network layers from invariant and equivariant graph networks https://arxiv.org/abs/1812.09902 in pytorch geometric?
Looking at the 15 bases from the paper there are 5 that update nodes and 10 that updates edges. Looking at the node updates, I think they are,
x_i = x_i
x_i = \sum x_j
x_i = \sum e_ij
x_i = \sum e_ji
x_i = \sum e_~i
In the message passing framework 1,2,3,4 are straightforward, but I don't see how to achieve 5. For 5 I am trying to say that node i would be updated by the edges that do not connect to node i. Is it possible to access the edges in the graph that do not connect to node i in the message function that is updating node i in pytorch geometric?
Thanks,
Josh
Beta Was this translation helpful? Give feedback.
All reactions