You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My question is since the two types of z are sampled from different distributions,
why they are input into the same decoder network?
And which output are the generated images from decoder, since they both created by sampling z according to a distribution ?
This is just my opinion.
Please feel free if I make mistakes.
Thank you.
The text was updated successfully, but these errors were encountered:
Hi,
I have a question confused about the latent variable z
According to the code in class VAEGAN,
It means that this z is first sampled according to VAE from:
encoded, means, ln_vars = self._encode(batch, test=test)
which means that the sampler z is s.t:
then, the sampled z is input to the decoder network to generate images, according to
rec = self._decode(encoded, test=test)
then, another z is sampled by:
which means it is s.t.
and the generated images is created by:
rec_p = self._decode(z_p)
My question is since the two types of z are sampled from different distributions,
why they are input into the same decoder network?
And which output are the generated images from decoder, since they both created by sampling z according to a distribution ?
This is just my opinion.
Please feel free if I make mistakes.
Thank you.
The text was updated successfully, but these errors were encountered: