-
Notifications
You must be signed in to change notification settings - Fork 254
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not clear in the difference between the two latent spaces predicted #85
Comments
There are two choices: (1) predicts a vector z (2) predicts the mean and variance of multi-variate Gaussian, and sample the latent vector using the predicted mean/variance., as done in Eqn 10 of the VAE paper. |
Thank you for the paper reference. I shall refer to it. Further, I have a few questions.
|
Does this mean that the cLR-GAN is trying to predict only one value of mean and variance for the entire multivariate latent space of |z| dimensions? |
For your question 1 and 3: (1) predict a single vector for cLR-GAN and (2) predict Gaussian mean/variance for cVAE-GAN. In cLR-GAN, we calculate the L1 loss between the sampled z and predicted z. For your question 2. The difference is that in (1) we try to match a particular vector, while in (2), we try to match the Gaussian distribution. |
Hi, I also have the same question with @arnabsinha99 |
I could not clearly understand what is the difference between the two latent z's being predicted. Both are trying to close to a normal distribution so both of them should be giving a point estimate as an output. @junyanz Sir, kindly correct me if I am wrong in my understanding. It would help me understand this wonderful paper even better. Thanks in advance :-)
The text was updated successfully, but these errors were encountered: