├── .gitignore ├── LICENSE ├── README.md ├── commands.sh ├── data.py ├── imlib ├── __init__.py ├── basic.py ├── dtype.py └── transform.py ├── make_gif.py ├── module.py ├── pics ├── anime_dragan.gif ├── anime_dragan.jpg ├── anime_wgan-gp.jpg ├── celeba_dragan-lp.jpg ├── celeba_dragan.gif ├── celeba_dragan.jpg ├── celeba_gan.jpg ├── celeba_lsgan.jpg ├── celeba_wgan-gp.jpg ├── celeba_wgan-lp.jpg ├── fashion-mnist_dragan.jpg ├── fashion-mnist_gan.jpg ├── fashion-mnist_lsgan.jpg └── fashion-mnist_wgan-gp.jpg ├── pylib ├── __init__.py ├── argument.py ├── path.py ├── processing.py ├── serialization.py └── timer.py ├── torchlib ├── __init__.py ├── data │ ├── __init__.py │ └── dataset.py ├── layers │ ├── __init__.py │ └── layers.py └── utils.py ├── torchprob ├── __init__.py └── gan │ ├── __init__.py │ ├── gradient_penalty.py │ └── loss.py ├── train.py └── v0 ├── README.md ├── models_64x64.py ├── pics ├── celeba_dragan_100.jpg ├── celeba_dragan_100_loss.png ├── celeba_wgan_gp_100.jpg └── celeba_wgan_gp_100_loss.png ├── train_celeba_dcgan.py ├── train_celeba_dragan.py ├── train_celeba_lsgan.py ├── train_celeba_wgan_gp.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /commands.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/commands.sh -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/data.py -------------------------------------------------------------------------------- /imlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/imlib/__init__.py -------------------------------------------------------------------------------- /imlib/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/imlib/basic.py -------------------------------------------------------------------------------- /imlib/dtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/imlib/dtype.py -------------------------------------------------------------------------------- /imlib/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/imlib/transform.py -------------------------------------------------------------------------------- /make_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/make_gif.py -------------------------------------------------------------------------------- /module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/module.py -------------------------------------------------------------------------------- /pics/anime_dragan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/anime_dragan.gif -------------------------------------------------------------------------------- /pics/anime_dragan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/anime_dragan.jpg -------------------------------------------------------------------------------- /pics/anime_wgan-gp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/anime_wgan-gp.jpg -------------------------------------------------------------------------------- /pics/celeba_dragan-lp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_dragan-lp.jpg -------------------------------------------------------------------------------- /pics/celeba_dragan.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_dragan.gif -------------------------------------------------------------------------------- /pics/celeba_dragan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_dragan.jpg -------------------------------------------------------------------------------- /pics/celeba_gan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_gan.jpg -------------------------------------------------------------------------------- /pics/celeba_lsgan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_lsgan.jpg -------------------------------------------------------------------------------- /pics/celeba_wgan-gp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_wgan-gp.jpg -------------------------------------------------------------------------------- /pics/celeba_wgan-lp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/celeba_wgan-lp.jpg -------------------------------------------------------------------------------- /pics/fashion-mnist_dragan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/fashion-mnist_dragan.jpg -------------------------------------------------------------------------------- /pics/fashion-mnist_gan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/fashion-mnist_gan.jpg -------------------------------------------------------------------------------- /pics/fashion-mnist_lsgan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/fashion-mnist_lsgan.jpg -------------------------------------------------------------------------------- /pics/fashion-mnist_wgan-gp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pics/fashion-mnist_wgan-gp.jpg -------------------------------------------------------------------------------- /pylib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pylib/__init__.py -------------------------------------------------------------------------------- /pylib/argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pylib/argument.py -------------------------------------------------------------------------------- /pylib/path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pylib/path.py -------------------------------------------------------------------------------- /pylib/processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pylib/processing.py -------------------------------------------------------------------------------- /pylib/serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pylib/serialization.py -------------------------------------------------------------------------------- /pylib/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/pylib/timer.py -------------------------------------------------------------------------------- /torchlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchlib/__init__.py -------------------------------------------------------------------------------- /torchlib/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchlib/data/__init__.py -------------------------------------------------------------------------------- /torchlib/data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchlib/data/dataset.py -------------------------------------------------------------------------------- /torchlib/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchlib/layers/__init__.py -------------------------------------------------------------------------------- /torchlib/layers/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchlib/layers/layers.py -------------------------------------------------------------------------------- /torchlib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchlib/utils.py -------------------------------------------------------------------------------- /torchprob/__init__.py: -------------------------------------------------------------------------------- 1 | from torchprob.gan import * 2 | -------------------------------------------------------------------------------- /torchprob/gan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchprob/gan/__init__.py -------------------------------------------------------------------------------- /torchprob/gan/gradient_penalty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchprob/gan/gradient_penalty.py -------------------------------------------------------------------------------- /torchprob/gan/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/torchprob/gan/loss.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/train.py -------------------------------------------------------------------------------- /v0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/README.md -------------------------------------------------------------------------------- /v0/models_64x64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/models_64x64.py -------------------------------------------------------------------------------- /v0/pics/celeba_dragan_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/pics/celeba_dragan_100.jpg -------------------------------------------------------------------------------- /v0/pics/celeba_dragan_100_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/pics/celeba_dragan_100_loss.png -------------------------------------------------------------------------------- /v0/pics/celeba_wgan_gp_100.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/pics/celeba_wgan_gp_100.jpg -------------------------------------------------------------------------------- /v0/pics/celeba_wgan_gp_100_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/pics/celeba_wgan_gp_100_loss.png -------------------------------------------------------------------------------- /v0/train_celeba_dcgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/train_celeba_dcgan.py -------------------------------------------------------------------------------- /v0/train_celeba_dragan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/train_celeba_dragan.py -------------------------------------------------------------------------------- /v0/train_celeba_lsgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/train_celeba_lsgan.py -------------------------------------------------------------------------------- /v0/train_celeba_wgan_gp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/train_celeba_wgan_gp.py -------------------------------------------------------------------------------- /v0/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LynnHo/DCGAN-LSGAN-WGAN-GP-DRAGAN-Pytorch/HEAD/v0/utils.py --------------------------------------------------------------------------------