├── .gitignore ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── configs ├── default.yaml ├── override.yaml └── train.yaml ├── main.py ├── models ├── __init__.py ├── arfb.py ├── comm.py ├── debug.py ├── et.py ├── hfm.py ├── hpb.py └── models.py ├── requirements.txt ├── scripts ├── __init__.py ├── configParser.py ├── dataloader.py ├── efficientTransformerSR.py ├── logger.py └── utils.py ├── shells ├── installEnv.bat └── installEnv.sh └── spec.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/README.md -------------------------------------------------------------------------------- /configs/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/configs/default.yaml -------------------------------------------------------------------------------- /configs/override.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/configs/override.yaml -------------------------------------------------------------------------------- /configs/train.yaml: -------------------------------------------------------------------------------- 1 | # Default Value for all Computers 2 | # 3 | --- 4 | 5 | 6 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/main.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/arfb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/arfb.py -------------------------------------------------------------------------------- /models/comm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/comm.py -------------------------------------------------------------------------------- /models/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/debug.py -------------------------------------------------------------------------------- /models/et.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/et.py -------------------------------------------------------------------------------- /models/hfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/hfm.py -------------------------------------------------------------------------------- /models/hpb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/hpb.py -------------------------------------------------------------------------------- /models/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/models/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/configParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/scripts/configParser.py -------------------------------------------------------------------------------- /scripts/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/scripts/dataloader.py -------------------------------------------------------------------------------- /scripts/efficientTransformerSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/scripts/efficientTransformerSR.py -------------------------------------------------------------------------------- /scripts/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/scripts/logger.py -------------------------------------------------------------------------------- /scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/scripts/utils.py -------------------------------------------------------------------------------- /shells/installEnv.bat: -------------------------------------------------------------------------------- 1 | cd .. 2 | pip install -r requirements.txt 3 | pause -------------------------------------------------------------------------------- /shells/installEnv.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | pip3 install -r requirements.txt -------------------------------------------------------------------------------- /spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/louisfghbvc/Efficient-Transformer-for-Single-Image-Super-Resolution/HEAD/spec.md --------------------------------------------------------------------------------