├── .gitignore ├── README.md ├── data.py ├── img ├── DCGAN.png └── result.png ├── model.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/README.md -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/data.py -------------------------------------------------------------------------------- /img/DCGAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/img/DCGAN.png -------------------------------------------------------------------------------- /img/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/img/result.png -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorlayer/DCGAN/HEAD/train.py --------------------------------------------------------------------------------