Hi,
I noticed the paper said the trained latent space is a mixed Gaussian distribution with trainable variance and expectation:
In particular, we propose a reparameterization of the latent space as a Mixture- of-Gaussians model.
However, it seems that in the script the latent space applied here is a uniform distribution with trainable variance and expectation:
display_z = np.random.uniform(-1.0, 1.0, [batchsize, z_dim]).astype(np.float32)
I don't quite understand this inconsistency.
Hi,
I noticed the paper said the trained latent space is a mixed Gaussian distribution with trainable variance and expectation:
However, it seems that in the script the latent space applied here is a uniform distribution with trainable variance and expectation:
display_z = np.random.uniform(-1.0, 1.0, [batchsize, z_dim]).astype(np.float32)I don't quite understand this inconsistency.