An open API service indexing awesome lists of open source software.

https://github.com/podgorskiy/vae

Example of vanilla VAE for face image generation at resolution 128x128 using pytorch.
https://github.com/podgorskiy/vae

autoencoder celeba celeba-dataset deep-learning deep-neural-networks deeplearning faces pytorch vae variational-autoencoder

Last synced: 7 days ago
JSON representation

Example of vanilla VAE for face image generation at resolution 128x128 using pytorch.

Awesome Lists containing this project

README

        

# Variational Autoencoder
Example of vanilla VAE for face image generation at resolution 128x128.

Auto-Encoding Variational Bayes: https://arxiv.org/abs/1312.6114

Generation:



Original Faces vs. Reconstructed Faces:



## How to Run
You need to have pytorch >= v0.4.1 and cuda/cuDNN drivers installed.

To install requirements:

```python
pip install -r requirements.txt
```

To download and prepare dataset:
```python
python prepare_celeba.py
```

To train:
```python
python VAE.py
```