Replies: 3 comments
-
Code that repoduces the problem.
|
Beta Was this translation helpful? Give feedback.
0 replies
-
Currently |
Beta Was this translation helpful? Give feedback.
0 replies
-
The graph is not bipartite, I just happened to pass only edges where dst != src. After reading some of the Kipf GCN whitepaper, it makes sense. Thanks! |
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.
Uh oh!
There was an error while loading. Please reload this page.
-
I am running into the following (probably user error) but this is as it goes: (using 2.1.0)
Created a heterogeneous convolution wrapper like in the docs -> https://pytorch-geometric.readthedocs.io/en/latest/notes/heterogeneous.html#trainfunc but with only one GCNConv per layer (2 layers) and one linear (not relevant at this point)
When my wrapper's forward gets invoked it invokes HeteroConv->forward as expected but then (in line 130 of hetero_conv.py) it invokes gcn_conv.py->forward with a tuple. gcn_conv.py takes a tensor. This causes a runtime error.
What am I missing?
Thanks a lot!
Beta Was this translation helpful? Give feedback.
All reactions