-
Beta Was this translation helpful? Give feedback.
Answered by
rusty1s
Aug 13, 2021
Replies: 1 comment 2 replies
-
Not really sure yet why the nn1 = Sequential(Linear(num_edge_features, num_node_features * hidden_dim), ReLU()
self.conv1 = NNConv(num_node_features, hidden_dim, nn1, aggr='mean')
nn2 = Sequential(Linear(num_edge_features, hidden_dim * hidden_dim), ReLU()
self.conv2 = NNConv(hidden_dim, hidden_dim, nn1, aggr='mean') |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
vlongle
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not really sure yet why the
RGCNConv
example does not work for you (can you create some custom data to reproduce?). In the second example, thenn
needs to map toin_channels * out_channels
of theNNConv
: