├── README.md ├── code ├── data │ ├── __init__.py │ ├── __init__.pyc │ ├── benchmark.py │ ├── common.py │ ├── demo.py │ ├── div2k.py │ ├── div2kjpeg.py │ ├── sr291.py │ ├── srdata.py │ └── video.py ├── dataloader.py ├── feature_transformation.py ├── flop_evaluation.py ├── loss.py ├── models │ ├── MPNCOV │ │ ├── __init__.py │ │ └── python │ │ │ ├── MPNCOV.py │ │ │ └── __init__.py │ ├── __init__.py │ ├── common.py │ ├── edsr.py │ ├── rcan.py │ ├── rdn.py │ └── san.py ├── option.py ├── scripts │ ├── train_edsr_SA_x2.sh │ ├── train_edsr_SA_x3.sh │ ├── train_edsr_SA_x4.sh │ ├── train_edsr_SA_x8.sh │ ├── train_edsr_baseline_x2.sh │ ├── train_edsr_baseline_x3.sh │ ├── train_edsr_baseline_x4.sh │ ├── train_edsr_baseline_x8.sh │ ├── train_rcan_SA_x2.sh │ ├── train_rcan_SA_x3.sh │ ├── train_rcan_SA_x4.sh │ ├── train_rcan_SA_x8.sh │ ├── train_rcan_baseline_x2.sh │ ├── train_rcan_baseline_x3.sh │ ├── train_rcan_baseline_x4.sh │ ├── train_rcan_baseline_x8.sh │ ├── train_san_baseline_x2.sh │ ├── train_san_baseline_x3.sh │ ├── train_san_baseline_x4.sh │ └── train_san_baseline_x8.sh ├── template.py ├── test.py ├── train.py ├── utility.py └── visualization.py ├── experiment └── readme.md ├── figure ├── framework.png └── result.png └── teacher_checkpoint └── readme.md /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/README.md -------------------------------------------------------------------------------- /code/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/__init__.py -------------------------------------------------------------------------------- /code/data/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/__init__.pyc -------------------------------------------------------------------------------- /code/data/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/benchmark.py -------------------------------------------------------------------------------- /code/data/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/common.py -------------------------------------------------------------------------------- /code/data/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/demo.py -------------------------------------------------------------------------------- /code/data/div2k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/div2k.py -------------------------------------------------------------------------------- /code/data/div2kjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/div2kjpeg.py -------------------------------------------------------------------------------- /code/data/sr291.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/sr291.py -------------------------------------------------------------------------------- /code/data/srdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/srdata.py -------------------------------------------------------------------------------- /code/data/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/data/video.py -------------------------------------------------------------------------------- /code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/dataloader.py -------------------------------------------------------------------------------- /code/feature_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/feature_transformation.py -------------------------------------------------------------------------------- /code/flop_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/flop_evaluation.py -------------------------------------------------------------------------------- /code/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/loss.py -------------------------------------------------------------------------------- /code/models/MPNCOV/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/models/MPNCOV/python/MPNCOV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/MPNCOV/python/MPNCOV.py -------------------------------------------------------------------------------- /code/models/MPNCOV/python/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/__init__.py -------------------------------------------------------------------------------- /code/models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/common.py -------------------------------------------------------------------------------- /code/models/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/edsr.py -------------------------------------------------------------------------------- /code/models/rcan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/rcan.py -------------------------------------------------------------------------------- /code/models/rdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/rdn.py -------------------------------------------------------------------------------- /code/models/san.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/models/san.py -------------------------------------------------------------------------------- /code/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/option.py -------------------------------------------------------------------------------- /code/scripts/train_edsr_SA_x2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_SA_x2.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_SA_x3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_SA_x3.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_SA_x4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_SA_x4.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_SA_x8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_SA_x8.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_baseline_x2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_baseline_x2.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_baseline_x3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_baseline_x3.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_baseline_x4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_baseline_x4.sh -------------------------------------------------------------------------------- /code/scripts/train_edsr_baseline_x8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_edsr_baseline_x8.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_SA_x2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_SA_x2.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_SA_x3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_SA_x3.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_SA_x4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_SA_x4.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_SA_x8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_SA_x8.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_baseline_x2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_baseline_x2.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_baseline_x3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_baseline_x3.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_baseline_x4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_baseline_x4.sh -------------------------------------------------------------------------------- /code/scripts/train_rcan_baseline_x8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_rcan_baseline_x8.sh -------------------------------------------------------------------------------- /code/scripts/train_san_baseline_x2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_san_baseline_x2.sh -------------------------------------------------------------------------------- /code/scripts/train_san_baseline_x3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_san_baseline_x3.sh -------------------------------------------------------------------------------- /code/scripts/train_san_baseline_x4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_san_baseline_x4.sh -------------------------------------------------------------------------------- /code/scripts/train_san_baseline_x8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/scripts/train_san_baseline_x8.sh -------------------------------------------------------------------------------- /code/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/template.py -------------------------------------------------------------------------------- /code/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/test.py -------------------------------------------------------------------------------- /code/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/train.py -------------------------------------------------------------------------------- /code/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/utility.py -------------------------------------------------------------------------------- /code/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/code/visualization.py -------------------------------------------------------------------------------- /experiment/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /figure/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/figure/framework.png -------------------------------------------------------------------------------- /figure/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/figure/result.png -------------------------------------------------------------------------------- /teacher_checkpoint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vincent-Hoo/Knowledge-Distillation-for-Super-resolution/HEAD/teacher_checkpoint/readme.md --------------------------------------------------------------------------------