Edge attributes for GatedGraphConv #2478
Unanswered
rubyzhou2014
asked this question in
Q&A
Replies: 1 comment
-
You might want to extend the def message(self, x_j, edge_attr):
return self.lin(torch.cat([x_j, edge_attr], dim=-1)) where |
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.
-
Hi,
I am building a model using GatedGraphConv operator. I want to involve edge attributes in the model training but didn't find a way. I see that it can pass edge weight into GatedGraphConv, but not edge_attr.
Is there any API provided to support this feature? Or any suggestions for coding it manually? Thanks!
Beta Was this translation helpful? Give feedback.
All reactions