├── .idea ├── Super Resolution using Generative Adversarial Networks.iml ├── encodings.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── markdown-exported-files.xml ├── markdown-navigator.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md ├── architecture ├── SRGAN-simple-architecture.jpg └── SRGAN.png ├── keras_ops.py ├── layers.py ├── loss.py ├── models.py ├── tests ├── benchmark_test.py ├── bsd100 │ └── download_bsd100.py ├── set14 │ └── download_set14.py ├── set5 │ └── download_set5.py └── weights │ └── sr_resnet_weights.h5 ├── visualize.py └── weights └── SRGAN.h5 /.idea/Super Resolution using Generative Adversarial Networks.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/Super Resolution using Generative Adversarial Networks.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/markdown-exported-files.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/markdown-exported-files.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/README.md -------------------------------------------------------------------------------- /architecture/SRGAN-simple-architecture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/architecture/SRGAN-simple-architecture.jpg -------------------------------------------------------------------------------- /architecture/SRGAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/architecture/SRGAN.png -------------------------------------------------------------------------------- /keras_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/keras_ops.py -------------------------------------------------------------------------------- /layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/layers.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/loss.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/models.py -------------------------------------------------------------------------------- /tests/benchmark_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/tests/benchmark_test.py -------------------------------------------------------------------------------- /tests/bsd100/download_bsd100.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/tests/bsd100/download_bsd100.py -------------------------------------------------------------------------------- /tests/set14/download_set14.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/tests/set14/download_set14.py -------------------------------------------------------------------------------- /tests/set5/download_set5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/tests/set5/download_set5.py -------------------------------------------------------------------------------- /tests/weights/sr_resnet_weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/tests/weights/sr_resnet_weights.h5 -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/visualize.py -------------------------------------------------------------------------------- /weights/SRGAN.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/titu1994/Super-Resolution-using-Generative-Adversarial-Networks/HEAD/weights/SRGAN.h5 --------------------------------------------------------------------------------