Open GlancerZ opened 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?
z_mean + torch.exp(0.5 * z_log_var) * epsilon
z_mean + torch.exp( z_log_var)
In VAE, sampling is
z_mean + torch.exp(0.5 * z_log_var) * epsilon
, but why isz_mean + torch.exp( z_log_var)
in VGAE, does it cause anything different?