├── .gitignore ├── 01-06-2017-GAN_tutorial.md ├── CGAN_deconv.R ├── CGAN_embed.R ├── CGAN_upsample.R ├── README.Rmd ├── README.md ├── gan_example.Rproj ├── legacy ├── CGAN_mnist_setup.R ├── CGAN_train.R ├── CGAN_v3.R ├── GAN_MNIST.R ├── GAN_training.R └── iterators.R ├── models ├── D_aux_params_v1.params ├── D_params_model_v1.params ├── D_sym_model_v1.json ├── G_arg_params_v1.params ├── G_aux_params_v1.params ├── G_params_model_v1.params └── G_sym_model_v1.json └── www ├── CGAN_1.png ├── CGAN_200.png ├── CGAN_2400.png ├── CGAN_infer_9.png ├── Discriminator.png ├── Generator.png └── cgan_network.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/.gitignore -------------------------------------------------------------------------------- /01-06-2017-GAN_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/01-06-2017-GAN_tutorial.md -------------------------------------------------------------------------------- /CGAN_deconv.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/CGAN_deconv.R -------------------------------------------------------------------------------- /CGAN_embed.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/CGAN_embed.R -------------------------------------------------------------------------------- /CGAN_upsample.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/CGAN_upsample.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/README.md -------------------------------------------------------------------------------- /gan_example.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/gan_example.Rproj -------------------------------------------------------------------------------- /legacy/CGAN_mnist_setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/legacy/CGAN_mnist_setup.R -------------------------------------------------------------------------------- /legacy/CGAN_train.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/legacy/CGAN_train.R -------------------------------------------------------------------------------- /legacy/CGAN_v3.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/legacy/CGAN_v3.R -------------------------------------------------------------------------------- /legacy/GAN_MNIST.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/legacy/GAN_MNIST.R -------------------------------------------------------------------------------- /legacy/GAN_training.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/legacy/GAN_training.R -------------------------------------------------------------------------------- /legacy/iterators.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/legacy/iterators.R -------------------------------------------------------------------------------- /models/D_aux_params_v1.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/D_aux_params_v1.params -------------------------------------------------------------------------------- /models/D_params_model_v1.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/D_params_model_v1.params -------------------------------------------------------------------------------- /models/D_sym_model_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/D_sym_model_v1.json -------------------------------------------------------------------------------- /models/G_arg_params_v1.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/G_arg_params_v1.params -------------------------------------------------------------------------------- /models/G_aux_params_v1.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/G_aux_params_v1.params -------------------------------------------------------------------------------- /models/G_params_model_v1.params: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/G_params_model_v1.params -------------------------------------------------------------------------------- /models/G_sym_model_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/models/G_sym_model_v1.json -------------------------------------------------------------------------------- /www/CGAN_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/CGAN_1.png -------------------------------------------------------------------------------- /www/CGAN_200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/CGAN_200.png -------------------------------------------------------------------------------- /www/CGAN_2400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/CGAN_2400.png -------------------------------------------------------------------------------- /www/CGAN_infer_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/CGAN_infer_9.png -------------------------------------------------------------------------------- /www/Discriminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/Discriminator.png -------------------------------------------------------------------------------- /www/Generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/Generator.png -------------------------------------------------------------------------------- /www/cgan_network.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremiedb/gan_example/HEAD/www/cgan_network.jpg --------------------------------------------------------------------------------