Replies: 1 comment 2 replies
-
Yes, the decoder in VGAE has no learnable parameters (it is just an inner product). You can make this decoder learnable, e.g., via MLP(x_src, x_dst) -> [0, 1] but using an inner product decoder is the most common decoder. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was searching how to implement a VGAE using weighted matrixes. I found that this is implemented only for the encoder (I used a GCNconv), but after the decoder of the VGAE there is no implementation for weights in the recon_loss, is it right?
Do I need to implement it by myself?
Anyway I will try to implement it if it's possible.
Thanks for the help!
Beta Was this translation helpful? Give feedback.
All reactions