Replies: 1 comment
-
According to our tests, conv = TransformerConv((8, 16), 32)
conv((x1, x2), edge_index) I guess this is induced by the right_updated_features = right_updater((right_features, left_features), edge_index_left_right, edge_features)
|
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 trying to use
TransformerConv
layer on bipartite graph G = ((V_l, V_r), E). The goal is to send information from right vertex set V_r and edges E to V_l and then vice-versa. The code is:However, I am getting the following error:
I guess it might be because I am not passing the
size
argument to give the size of nodes in V_l, V_r because theTransformerConv.forward(...)
does not accept it as an argument. Would be happy to get your feedback on how to use TransformerConv on bipartite graphs. Thanks!Beta Was this translation helpful? Give feedback.
All reactions