vae
A PyTorch implementation of Auto-Encoding Variational Bayes
git clone https://github.com/andregaio/dcgan.git
cd vae
conda create -n vae python=3.8
conda activate vae
pip install -r requirements.txt
- VAE
python vae/train.py
python vae/infer.py --weights weights/last.pt --out test/image.png
- Some has been borrowed from https://github.com/Jackson-Kang/Pytorch-VAE-tutorial/tree/master

