-
Hi Matt, I would like to ask about up-sampling from global pooled representations. Let say I have |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 13 replies
-
I think your adjacency matrix was fixed for each example, right? In this case this simplifies things a lot. You have two options:
lin = Linear(out_channels, num_coarsened_nodes * out_channels)
x = lin(z).view(num_coarsened_nodes * batch_size, -1) |
Beta Was this translation helpful? Give feedback.
I think your adjacency matrix was fixed for each example, right? In this case this simplifies things a lot. You have two options:
view(batch_size, -1)
, and reshape in decoder to.view(num_coarsened_nodes * batch_size, -1)
again.