Replies: 1 comment 7 replies
-
I think the code looks correct to me (expect for that you can probably replace |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to reconstruct node features with GVAE, where each graph has a specific condition corresponding to it. When predicting, combine random variables sampled from N(0, I) and given condition variables to generate specified node features. The loss decreases and converges during the training phase, but the results are not good when using the trained model for prediction. I think this maybe because of the inapproprite way of fusion of condition variable and node features, what I did in the model is expanding the condition variable to have the same dimension as node features and then concatenating the two variables. The dimension of node feature and condition variable are [200,2] and [num_condition,1] seperately. I transposed the condition variable and then expanded it to [200,num_condition]. The final dimension of concatenated variable is [200,2+num_condition]. The condition variable should be the condition variable of the entire graph. Is there any problem with the concatenation?
Any suggestion to would be appreciated.
Thanks a lot in advance ! :)
Beta Was this translation helpful? Give feedback.
All reactions