├── .gitignore ├── DiscoGAN.py ├── LICENSE ├── README.md ├── main.py ├── ops.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /DiscoGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/DiscoGAN.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/main.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/ops.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taki0112/DiscoGAN-Tensorflow/HEAD/utils.py --------------------------------------------------------------------------------