Replies: 1 comment
-
That depends a bit on what you want your The output from |
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
-
Hello,
I would like to ask a question of combining using pyg and pytorch. If i design a model that includes both GNN and CNN, for example,
before executing ** x = self.conv2(x)**, how to reshape the output of GCNconv to make it be the suitable input of nn.Conv2d? besides, if I define two blocks, each block contains the " self.conv1 = GCNConv(num_features, 64) and self.conv2 = nn.Conv2d(1, 16, kernel_size=3, stride=1, padding=1)" , how can I transfom the shape of input from GCNConv to Conv2d and from Conv2d to GCNConv?
Thanks & Regards
Beta Was this translation helpful? Give feedback.
All reactions