Skip to content
Discussion options

You must be logged in to vote

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, the nn needs to map to in_channels * out_channels of the NNConv:

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')

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@vlongle
Comment options

@rusty1s
Comment options

Answer selected by vlongle
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants