├── .gitignore ├── ACGAN.py ├── BEGAN.py ├── CGAN.py ├── DRAGAN.py ├── EBGAN.py ├── GAN.py ├── LICENSE ├── LSGAN.py ├── README.md ├── VAE.py ├── WGAN.py ├── WGAN_GP.py ├── images ├── ACGAN_IS.png ├── BEGAN_IS.png ├── BEGAN_train_59_0715.png ├── CGAN_IS.png ├── CGAN_epoch059_test_all_classes.png ├── DRAGAN_epoch059_test_all_classes.png ├── DRAGAN_epoch099IS.png ├── GAN_epoch059IS.png ├── GAN_epoch059_test_all_classes.png ├── LSGAN_epoch059IS.png ├── LSGAN_epoch059_test_all_classes.png ├── WGAN_GP_epoch299IS.png ├── WGAN_GP_epoch299_test_all_classes.png ├── WGAN_epoch059IS.png ├── WGAN_epoch059_test_all_classes.png ├── infoGAN_epoch059IS.png └── infoGAN_epoch059_test_all_classes_style_by_style.png ├── inception_score.py ├── infoGAN.py ├── main.py ├── ops.py ├── prior_factory.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/.gitignore -------------------------------------------------------------------------------- /ACGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/ACGAN.py -------------------------------------------------------------------------------- /BEGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/BEGAN.py -------------------------------------------------------------------------------- /CGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/CGAN.py -------------------------------------------------------------------------------- /DRAGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/DRAGAN.py -------------------------------------------------------------------------------- /EBGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/EBGAN.py -------------------------------------------------------------------------------- /GAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/GAN.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/LICENSE -------------------------------------------------------------------------------- /LSGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/LSGAN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/README.md -------------------------------------------------------------------------------- /VAE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/VAE.py -------------------------------------------------------------------------------- /WGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/WGAN.py -------------------------------------------------------------------------------- /WGAN_GP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/WGAN_GP.py -------------------------------------------------------------------------------- /images/ACGAN_IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/ACGAN_IS.png -------------------------------------------------------------------------------- /images/BEGAN_IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/BEGAN_IS.png -------------------------------------------------------------------------------- /images/BEGAN_train_59_0715.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/BEGAN_train_59_0715.png -------------------------------------------------------------------------------- /images/CGAN_IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/CGAN_IS.png -------------------------------------------------------------------------------- /images/CGAN_epoch059_test_all_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/CGAN_epoch059_test_all_classes.png -------------------------------------------------------------------------------- /images/DRAGAN_epoch059_test_all_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/DRAGAN_epoch059_test_all_classes.png -------------------------------------------------------------------------------- /images/DRAGAN_epoch099IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/DRAGAN_epoch099IS.png -------------------------------------------------------------------------------- /images/GAN_epoch059IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/GAN_epoch059IS.png -------------------------------------------------------------------------------- /images/GAN_epoch059_test_all_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/GAN_epoch059_test_all_classes.png -------------------------------------------------------------------------------- /images/LSGAN_epoch059IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/LSGAN_epoch059IS.png -------------------------------------------------------------------------------- /images/LSGAN_epoch059_test_all_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/LSGAN_epoch059_test_all_classes.png -------------------------------------------------------------------------------- /images/WGAN_GP_epoch299IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/WGAN_GP_epoch299IS.png -------------------------------------------------------------------------------- /images/WGAN_GP_epoch299_test_all_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/WGAN_GP_epoch299_test_all_classes.png -------------------------------------------------------------------------------- /images/WGAN_epoch059IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/WGAN_epoch059IS.png -------------------------------------------------------------------------------- /images/WGAN_epoch059_test_all_classes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/WGAN_epoch059_test_all_classes.png -------------------------------------------------------------------------------- /images/infoGAN_epoch059IS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/infoGAN_epoch059IS.png -------------------------------------------------------------------------------- /images/infoGAN_epoch059_test_all_classes_style_by_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/images/infoGAN_epoch059_test_all_classes_style_by_style.png -------------------------------------------------------------------------------- /inception_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/inception_score.py -------------------------------------------------------------------------------- /infoGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/infoGAN.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/main.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/ops.py -------------------------------------------------------------------------------- /prior_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/prior_factory.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AliceAria/Performance-comparison-of-GAN-on-cifar-10/HEAD/utils.py --------------------------------------------------------------------------------