├── .gitignore ├── LICENSE ├── LICENSES ├── LICENSE ├── LICENSE_BasicSR ├── LICENSE_GLOW └── README.md ├── README.md ├── code ├── Measure.py ├── confs │ ├── RRDB_CelebA_8X.yml │ ├── RRDB_DF2K_4X.yml │ ├── RRDB_DF2K_8X.yml │ ├── SRFlow_CelebA_8X.yml │ ├── SRFlow_DF2K_4X.yml │ └── SRFlow_DF2K_8X.yml ├── data │ ├── LRHR_PKL_dataset.py │ └── __init__.py ├── demo_on_pretrained.ipynb ├── imresize.py ├── models │ ├── SRFlow_model.py │ ├── SR_model.py │ ├── __init__.py │ ├── base_model.py │ ├── lr_scheduler.py │ ├── modules │ │ ├── FlowActNorms.py │ │ ├── FlowAffineCouplingsAblation.py │ │ ├── FlowStep.py │ │ ├── FlowUpsamplerNet.py │ │ ├── Permutations.py │ │ ├── RRDBNet_arch.py │ │ ├── SRFlowNet_arch.py │ │ ├── Split.py │ │ ├── __init__.py │ │ ├── flow.py │ │ ├── glow_arch.py │ │ ├── loss.py │ │ ├── module_util.py │ │ └── thops.py │ └── networks.py ├── options │ ├── __init__.py │ └── options.py ├── prepare_data.py ├── test.py ├── train.py └── utils │ ├── __init__.py │ ├── timer.py │ └── util.py ├── requirements.txt ├── run_jupyter.sh └── setup.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/LICENSES/LICENSE -------------------------------------------------------------------------------- /LICENSES/LICENSE_BasicSR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/LICENSES/LICENSE_BasicSR -------------------------------------------------------------------------------- /LICENSES/LICENSE_GLOW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/LICENSES/LICENSE_GLOW -------------------------------------------------------------------------------- /LICENSES/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/LICENSES/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/README.md -------------------------------------------------------------------------------- /code/Measure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/Measure.py -------------------------------------------------------------------------------- /code/confs/RRDB_CelebA_8X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/confs/RRDB_CelebA_8X.yml -------------------------------------------------------------------------------- /code/confs/RRDB_DF2K_4X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/confs/RRDB_DF2K_4X.yml -------------------------------------------------------------------------------- /code/confs/RRDB_DF2K_8X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/confs/RRDB_DF2K_8X.yml -------------------------------------------------------------------------------- /code/confs/SRFlow_CelebA_8X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/confs/SRFlow_CelebA_8X.yml -------------------------------------------------------------------------------- /code/confs/SRFlow_DF2K_4X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/confs/SRFlow_DF2K_4X.yml -------------------------------------------------------------------------------- /code/confs/SRFlow_DF2K_8X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/confs/SRFlow_DF2K_8X.yml -------------------------------------------------------------------------------- /code/data/LRHR_PKL_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/data/LRHR_PKL_dataset.py -------------------------------------------------------------------------------- /code/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/data/__init__.py -------------------------------------------------------------------------------- /code/demo_on_pretrained.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/demo_on_pretrained.ipynb -------------------------------------------------------------------------------- /code/imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/imresize.py -------------------------------------------------------------------------------- /code/models/SRFlow_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/SRFlow_model.py -------------------------------------------------------------------------------- /code/models/SR_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/SR_model.py -------------------------------------------------------------------------------- /code/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/__init__.py -------------------------------------------------------------------------------- /code/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/base_model.py -------------------------------------------------------------------------------- /code/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/lr_scheduler.py -------------------------------------------------------------------------------- /code/models/modules/FlowActNorms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/FlowActNorms.py -------------------------------------------------------------------------------- /code/models/modules/FlowAffineCouplingsAblation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/FlowAffineCouplingsAblation.py -------------------------------------------------------------------------------- /code/models/modules/FlowStep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/FlowStep.py -------------------------------------------------------------------------------- /code/models/modules/FlowUpsamplerNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/FlowUpsamplerNet.py -------------------------------------------------------------------------------- /code/models/modules/Permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/Permutations.py -------------------------------------------------------------------------------- /code/models/modules/RRDBNet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/RRDBNet_arch.py -------------------------------------------------------------------------------- /code/models/modules/SRFlowNet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/SRFlowNet_arch.py -------------------------------------------------------------------------------- /code/models/modules/Split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/Split.py -------------------------------------------------------------------------------- /code/models/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/models/modules/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/flow.py -------------------------------------------------------------------------------- /code/models/modules/glow_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/glow_arch.py -------------------------------------------------------------------------------- /code/models/modules/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/loss.py -------------------------------------------------------------------------------- /code/models/modules/module_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/module_util.py -------------------------------------------------------------------------------- /code/models/modules/thops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/modules/thops.py -------------------------------------------------------------------------------- /code/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/models/networks.py -------------------------------------------------------------------------------- /code/options/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/options/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/options/options.py -------------------------------------------------------------------------------- /code/prepare_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/prepare_data.py -------------------------------------------------------------------------------- /code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/test.py -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/train.py -------------------------------------------------------------------------------- /code/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/utils/timer.py -------------------------------------------------------------------------------- /code/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/code/utils/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_jupyter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/run_jupyter.sh -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andreas128/SRFlow/HEAD/setup.sh --------------------------------------------------------------------------------