zfjsail / gae-pytorch

Graph Auto-Encoder in PyTorch
MIT License
417 stars 79 forks source link

About sampling #8

Open GlancerZ opened 3 years ago

GlancerZ commented 3 years ago

In VAE, sampling is z_mean + torch.exp(0.5 * z_log_var) * epsilon , but why is z_mean + torch.exp( z_log_var) in VGAE, does it cause anything different?