├── .gitignore ├── README.md ├── batch_norm_conv_layer.py ├── batch_norm_layer.py ├── battle.py ├── conv_layer.py ├── convnet_cuda128.py ├── convnet_cuda28.py ├── convnet_cuda32.py ├── convnet_cuda64.py ├── deconv.py ├── figs ├── cifar10 │ ├── cifar10_granI_samples.jpeg │ └── cifar10_granI_samples2.jpeg └── lsun │ ├── lsun_mix_ts3.jpg │ ├── lsun_ts3.jpg │ └── lsun_ts5.jpg ├── gran.py ├── inquire_recganI.py ├── inquire_samples.py ├── main_granI_cifar10.py ├── main_granI_lsun.py ├── main_granI_lsunc.py ├── optimize_gan.py ├── paths.yaml ├── recGanI.py ├── recGenI128.py ├── recGenI28.py ├── recGenI32.py ├── recGenI64.py ├── to_hkl.py ├── util_cifar10.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/README.md -------------------------------------------------------------------------------- /batch_norm_conv_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/batch_norm_conv_layer.py -------------------------------------------------------------------------------- /batch_norm_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/batch_norm_layer.py -------------------------------------------------------------------------------- /battle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/battle.py -------------------------------------------------------------------------------- /conv_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/conv_layer.py -------------------------------------------------------------------------------- /convnet_cuda128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/convnet_cuda128.py -------------------------------------------------------------------------------- /convnet_cuda28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/convnet_cuda28.py -------------------------------------------------------------------------------- /convnet_cuda32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/convnet_cuda32.py -------------------------------------------------------------------------------- /convnet_cuda64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/convnet_cuda64.py -------------------------------------------------------------------------------- /deconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/deconv.py -------------------------------------------------------------------------------- /figs/cifar10/cifar10_granI_samples.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/figs/cifar10/cifar10_granI_samples.jpeg -------------------------------------------------------------------------------- /figs/cifar10/cifar10_granI_samples2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/figs/cifar10/cifar10_granI_samples2.jpeg -------------------------------------------------------------------------------- /figs/lsun/lsun_mix_ts3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/figs/lsun/lsun_mix_ts3.jpg -------------------------------------------------------------------------------- /figs/lsun/lsun_ts3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/figs/lsun/lsun_ts3.jpg -------------------------------------------------------------------------------- /figs/lsun/lsun_ts5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/figs/lsun/lsun_ts5.jpg -------------------------------------------------------------------------------- /gran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/gran.py -------------------------------------------------------------------------------- /inquire_recganI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/inquire_recganI.py -------------------------------------------------------------------------------- /inquire_samples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/inquire_samples.py -------------------------------------------------------------------------------- /main_granI_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/main_granI_cifar10.py -------------------------------------------------------------------------------- /main_granI_lsun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/main_granI_lsun.py -------------------------------------------------------------------------------- /main_granI_lsunc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/main_granI_lsunc.py -------------------------------------------------------------------------------- /optimize_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/optimize_gan.py -------------------------------------------------------------------------------- /paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/paths.yaml -------------------------------------------------------------------------------- /recGanI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/recGanI.py -------------------------------------------------------------------------------- /recGenI128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/recGenI128.py -------------------------------------------------------------------------------- /recGenI28.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/recGenI28.py -------------------------------------------------------------------------------- /recGenI32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/recGenI32.py -------------------------------------------------------------------------------- /recGenI64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/recGenI64.py -------------------------------------------------------------------------------- /to_hkl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/to_hkl.py -------------------------------------------------------------------------------- /util_cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/util_cifar10.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiwoongim/Generating-images-with-recurrent-adversarial-networks/HEAD/utils.py --------------------------------------------------------------------------------