├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── configs ├── esrgan.yaml └── psnr.yaml ├── data ├── PIPRM_3_crop.png ├── baboon.png ├── convert_train_tfrecord.py ├── extract_subimages.py └── rename.py ├── dataset_checker.py ├── environment.yml ├── merge_table_img.py ├── modules ├── __init__.py ├── dataset.py ├── losses.py ├── lr_scheduler.py ├── models.py └── utils.py ├── net_interp.py ├── notebooks └── colab-github-demo.ipynb ├── photo ├── baboon_cover.png ├── image_interp_PIPRM_3_crop.png ├── table_baboon.png ├── table_baby.png ├── table_bird.png ├── table_butterfly.png ├── table_comic.png ├── table_head.png ├── table_lenna.png ├── table_monarch.png ├── table_woman.png ├── table_zebra.png └── weight_interp_PIPRM_3_crop.png ├── requirements.txt ├── test.py ├── train_esrgan.py └── train_psnr.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/README.md -------------------------------------------------------------------------------- /configs/esrgan.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/configs/esrgan.yaml -------------------------------------------------------------------------------- /configs/psnr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/configs/psnr.yaml -------------------------------------------------------------------------------- /data/PIPRM_3_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/data/PIPRM_3_crop.png -------------------------------------------------------------------------------- /data/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/data/baboon.png -------------------------------------------------------------------------------- /data/convert_train_tfrecord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/data/convert_train_tfrecord.py -------------------------------------------------------------------------------- /data/extract_subimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/data/extract_subimages.py -------------------------------------------------------------------------------- /data/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/data/rename.py -------------------------------------------------------------------------------- /dataset_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/dataset_checker.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/environment.yml -------------------------------------------------------------------------------- /merge_table_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/merge_table_img.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/modules/dataset.py -------------------------------------------------------------------------------- /modules/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/modules/losses.py -------------------------------------------------------------------------------- /modules/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/modules/lr_scheduler.py -------------------------------------------------------------------------------- /modules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/modules/models.py -------------------------------------------------------------------------------- /modules/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/modules/utils.py -------------------------------------------------------------------------------- /net_interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/net_interp.py -------------------------------------------------------------------------------- /notebooks/colab-github-demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/notebooks/colab-github-demo.ipynb -------------------------------------------------------------------------------- /photo/baboon_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/baboon_cover.png -------------------------------------------------------------------------------- /photo/image_interp_PIPRM_3_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/image_interp_PIPRM_3_crop.png -------------------------------------------------------------------------------- /photo/table_baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_baboon.png -------------------------------------------------------------------------------- /photo/table_baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_baby.png -------------------------------------------------------------------------------- /photo/table_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_bird.png -------------------------------------------------------------------------------- /photo/table_butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_butterfly.png -------------------------------------------------------------------------------- /photo/table_comic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_comic.png -------------------------------------------------------------------------------- /photo/table_head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_head.png -------------------------------------------------------------------------------- /photo/table_lenna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_lenna.png -------------------------------------------------------------------------------- /photo/table_monarch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_monarch.png -------------------------------------------------------------------------------- /photo/table_woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_woman.png -------------------------------------------------------------------------------- /photo/table_zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/table_zebra.png -------------------------------------------------------------------------------- /photo/weight_interp_PIPRM_3_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/photo/weight_interp_PIPRM_3_crop.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow-gpu==2.1.0 2 | numpy 3 | opencv-python 4 | PyYAML 5 | tqdm 6 | Pillow -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/test.py -------------------------------------------------------------------------------- /train_esrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/train_esrgan.py -------------------------------------------------------------------------------- /train_psnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peteryuX/esrgan-tf2/HEAD/train_psnr.py --------------------------------------------------------------------------------