├── .github └── workflows │ └── test.yml ├── .gitignore ├── README.md ├── data └── test_images │ ├── test_shot-10800.png │ ├── test_shot-4800.png │ ├── test_shot-5700.png │ ├── test_shot-6600.png │ ├── test_shot-8700.png │ └── test_shot-9300.png ├── data_generator ├── __init__.py ├── data_generator.py └── data_utils.py ├── example_images ├── final │ ├── ema_image0.png │ ├── ema_image1.png │ ├── ema_image2.png │ ├── ema_image3.png │ └── ema_image4.png └── original │ ├── image0.jpeg │ ├── image1.jpeg │ ├── image2.jpeg │ ├── image3.jpeg │ └── image4.jpeg ├── models ├── ema_gan_model │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ │ ├── variables.data-00000-of-00001 │ │ └── variables.index └── gan_model │ ├── keras_metadata.pb │ ├── saved_model.pb │ └── variables │ ├── variables.data-00000-of-00001 │ └── variables.index ├── networks ├── __init__.py ├── loss_functions.py ├── model_blocks.py └── models.py ├── requirements.txt ├── section_codes.json ├── test ├── __init__.py ├── test_data_generator.py ├── test_loss.py └── test_model.py ├── train.py ├── train_gan.py ├── train_utils.py └── use_model.py /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/README.md -------------------------------------------------------------------------------- /data/test_images/test_shot-10800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data/test_images/test_shot-10800.png -------------------------------------------------------------------------------- /data/test_images/test_shot-4800.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data/test_images/test_shot-4800.png -------------------------------------------------------------------------------- /data/test_images/test_shot-5700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data/test_images/test_shot-5700.png -------------------------------------------------------------------------------- /data/test_images/test_shot-6600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data/test_images/test_shot-6600.png -------------------------------------------------------------------------------- /data/test_images/test_shot-8700.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data/test_images/test_shot-8700.png -------------------------------------------------------------------------------- /data/test_images/test_shot-9300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data/test_images/test_shot-9300.png -------------------------------------------------------------------------------- /data_generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data_generator/data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data_generator/data_generator.py -------------------------------------------------------------------------------- /data_generator/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/data_generator/data_utils.py -------------------------------------------------------------------------------- /example_images/final/ema_image0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/final/ema_image0.png -------------------------------------------------------------------------------- /example_images/final/ema_image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/final/ema_image1.png -------------------------------------------------------------------------------- /example_images/final/ema_image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/final/ema_image2.png -------------------------------------------------------------------------------- /example_images/final/ema_image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/final/ema_image3.png -------------------------------------------------------------------------------- /example_images/final/ema_image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/final/ema_image4.png -------------------------------------------------------------------------------- /example_images/original/image0.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/original/image0.jpeg -------------------------------------------------------------------------------- /example_images/original/image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/original/image1.jpeg -------------------------------------------------------------------------------- /example_images/original/image2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/original/image2.jpeg -------------------------------------------------------------------------------- /example_images/original/image3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/original/image3.jpeg -------------------------------------------------------------------------------- /example_images/original/image4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/example_images/original/image4.jpeg -------------------------------------------------------------------------------- /models/ema_gan_model/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/ema_gan_model/keras_metadata.pb -------------------------------------------------------------------------------- /models/ema_gan_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/ema_gan_model/saved_model.pb -------------------------------------------------------------------------------- /models/ema_gan_model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/ema_gan_model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /models/ema_gan_model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/ema_gan_model/variables/variables.index -------------------------------------------------------------------------------- /models/gan_model/keras_metadata.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/gan_model/keras_metadata.pb -------------------------------------------------------------------------------- /models/gan_model/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/gan_model/saved_model.pb -------------------------------------------------------------------------------- /models/gan_model/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/gan_model/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /models/gan_model/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/models/gan_model/variables/variables.index -------------------------------------------------------------------------------- /networks/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /networks/loss_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/networks/loss_functions.py -------------------------------------------------------------------------------- /networks/model_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/networks/model_blocks.py -------------------------------------------------------------------------------- /networks/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/networks/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | tensorflow==2.7.0 3 | tfa-nightly 4 | opencv-python -------------------------------------------------------------------------------- /section_codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/section_codes.json -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_data_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/test/test_data_generator.py -------------------------------------------------------------------------------- /test/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/test/test_loss.py -------------------------------------------------------------------------------- /test/test_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/test/test_model.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/train.py -------------------------------------------------------------------------------- /train_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/train_gan.py -------------------------------------------------------------------------------- /train_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/train_utils.py -------------------------------------------------------------------------------- /use_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vincent1bt/Real-ESRGAN-TensorFlow/HEAD/use_model.py --------------------------------------------------------------------------------