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
I am not sure if I have your question right, but let me make a guess....
According to two pictures below, the first figure shows that we should draw some noise from standard normal, and multiply it by standard deviation and add mean to it, and in the sample codes, they indeed return values based on the operation. This is so-called reparameterization.
To achieve the goal, we first compute the standard deviation (For the reason why we can compute it by logvar.mul(0.5).exp_(), please refer to the question I answered before #9). As we get the standard deviation, we should draw some noise from normal distribution of which dimension is equal to the dim. of the standard deviation (also equal to the dim. of mean. It's straightforward because each normal distribution has one var and one mean as its parameters. In our case, it should be 10.) In the end, the function shown in the second figure returns the reparameterized noise.
The following section contains the math of latent code generation.
Where can we find " what exact math operation does it perform " ?
Thanks
===
The text was updated successfully, but these errors were encountered: