├── .gitignore ├── LICENSE ├── README.md ├── assets ├── Bi-Cycle-GAN-loss.png ├── cLR-GAN-loss.png ├── cVAE-GAN-loss.png ├── edges2shoes1.jpg ├── edges2shoes1_linear.jpg ├── edges2shoes1_random.jpg ├── edges2shoes2.jpg ├── edges2shoes2_linear.jpg ├── edges2shoes2_random.jpg ├── paper-figure.png └── training-edges2shoes.png ├── bicycle-gan.py ├── data_loader.py ├── discriminator.py ├── download_pix2pix_dataset.sh ├── encoder.py ├── generator.py ├── model.py ├── ops.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /assets/Bi-Cycle-GAN-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/Bi-Cycle-GAN-loss.png -------------------------------------------------------------------------------- /assets/cLR-GAN-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/cLR-GAN-loss.png -------------------------------------------------------------------------------- /assets/cVAE-GAN-loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/cVAE-GAN-loss.png -------------------------------------------------------------------------------- /assets/edges2shoes1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/edges2shoes1.jpg -------------------------------------------------------------------------------- /assets/edges2shoes1_linear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/edges2shoes1_linear.jpg -------------------------------------------------------------------------------- /assets/edges2shoes1_random.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/edges2shoes1_random.jpg -------------------------------------------------------------------------------- /assets/edges2shoes2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/edges2shoes2.jpg -------------------------------------------------------------------------------- /assets/edges2shoes2_linear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/edges2shoes2_linear.jpg -------------------------------------------------------------------------------- /assets/edges2shoes2_random.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/edges2shoes2_random.jpg -------------------------------------------------------------------------------- /assets/paper-figure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/paper-figure.png -------------------------------------------------------------------------------- /assets/training-edges2shoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/assets/training-edges2shoes.png -------------------------------------------------------------------------------- /bicycle-gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/bicycle-gan.py -------------------------------------------------------------------------------- /data_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/data_loader.py -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/discriminator.py -------------------------------------------------------------------------------- /download_pix2pix_dataset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/download_pix2pix_dataset.sh -------------------------------------------------------------------------------- /encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/encoder.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/generator.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/ops.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clvrai/BicycleGAN-Tensorflow/HEAD/utils.py --------------------------------------------------------------------------------