├── README.md ├── VariationalAutoencoder_Pytorch.ipynb └── latent01.png /README.md: -------------------------------------------------------------------------------- 1 | # VariationalAutoencoders_Pytorch 2 | Variational Autoencoder (VAE) PyTorch Tutorial from Scratch. [Read the article here](https://medium.com/@rekalantar/variational-auto-encoder-vae-pytorch-tutorial-dce2d2fe0f5f) 3 | 4 | 5 | • Visualizing the latent space. Mean and variance range [-1.0, 1.0] 6 | ![latent01](https://user-images.githubusercontent.com/51782618/202878514-20fc60ba-3ff0-4503-bcf1-6172cffc9450.png) 7 | 8 | 9 | • Mean and variance range [-5.0, 5.0] 10 | ![latent5](https://user-images.githubusercontent.com/51782618/202878535-dd7dc216-8955-4dbc-b393-c27aea40ac34.png) 11 | -------------------------------------------------------------------------------- /latent01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rekalantar/VariationalAutoencoders_Pytorch/0be6e521e059cbf78516f748b12305daec52a50a/latent01.png --------------------------------------------------------------------------------