Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 680 Bytes

README.md

File metadata and controls

16 lines (13 loc) · 680 Bytes

Simple VAE implementation in pytorch

Usage

To run FashionMNIST

here Dataset can be FashionMNIST or MNIST


python3 main.py --input_shape 28 28 --latent_dimension 20 --Dataset FashionMNIST --epochs 50 --batch_size 128

To generate synthetic Images from the trained model


python3 generate_synthetic_data.py --input_shape 28 28 --latent_dimension 20 --batch_size 30 --model_path model/FashionMnist_model.pth --save_path generated_images/
Sample results on FashionMNIST trained for 50 Epochs

result