├── .gitignore ├── DeBlurGAN Presentation.pdf ├── DeblurGAN.ipynb ├── LICENSE ├── README.md ├── _config.yml ├── environment.yml ├── images ├── model-arch.png ├── result_go_pro_large.png ├── result_model_go_pro_large-1.png ├── result_model_go_pro_large-2.png └── result_model_go_pro_large-3.png └── trained_weights ├── discriminator_195.h5 └── generator_195_204.h5 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/.gitignore -------------------------------------------------------------------------------- /DeBlurGAN Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/DeBlurGAN Presentation.pdf -------------------------------------------------------------------------------- /DeblurGAN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/DeblurGAN.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/_config.yml -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/environment.yml -------------------------------------------------------------------------------- /images/model-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/images/model-arch.png -------------------------------------------------------------------------------- /images/result_go_pro_large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/images/result_go_pro_large.png -------------------------------------------------------------------------------- /images/result_model_go_pro_large-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/images/result_model_go_pro_large-1.png -------------------------------------------------------------------------------- /images/result_model_go_pro_large-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/images/result_model_go_pro_large-2.png -------------------------------------------------------------------------------- /images/result_model_go_pro_large-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/images/result_model_go_pro_large-3.png -------------------------------------------------------------------------------- /trained_weights/discriminator_195.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/trained_weights/discriminator_195.h5 -------------------------------------------------------------------------------- /trained_weights/generator_195_204.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siddhantkhandelwal/deblur-gan/HEAD/trained_weights/generator_195_204.h5 --------------------------------------------------------------------------------