-
Error message where use Multiple Headers. I modified the code based on the tutorial. ` Class GlobalAttentionGATNeWithHeaders(torch.nn.Module):
Here is the error message
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
I guess, the input dimension to self.conv2 should be |
Beta Was this translation helpful? Give feedback.
I guess, the input dimension to self.conv2 should be
hidden_channels*num_heads
.self.conv2 = GATConv(hidden_channels * num_heads, hidden_channels, 1)
.