RahulBhalley / progressive-growing-of-gans.pytorch

Unofficial PyTorch implementation of "Progressive Growing of GANs for Improved Quality, Stability, and Variation".
https://arxiv.org/abs/1710.10196
MIT License
50 stars 5 forks source link

interpolation #1

Open YoelShoshan opened 6 years ago

YoelShoshan commented 6 years ago

Thanks a lot for sharing! Didn't try it yet, but will soon :)

Notice that what you refer to as "latent space interpolation" (and the animated gif) are not really interpolations. You are generating random samples, but not interpolating between them. To get the "morphing" effect, like in their movie, you need to interpolate (in the latent z space) between the random samples, and generate for each an image.

RahulBhalley commented 6 years ago

Thanks for the correction. Would really appreciate any PRs 😄