├── README.md ├── base_networks.py ├── data.py ├── dataset.py ├── drcn.py ├── edsr.py ├── espcn.py ├── fsrcnn.py ├── lapsrn.py ├── logger.py ├── main.py ├── model.py ├── srcnn.py ├── srgan.py ├── utils.py └── vdsr.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/README.md -------------------------------------------------------------------------------- /base_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/base_networks.py -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/data.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/dataset.py -------------------------------------------------------------------------------- /drcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/drcn.py -------------------------------------------------------------------------------- /edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/edsr.py -------------------------------------------------------------------------------- /espcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/espcn.py -------------------------------------------------------------------------------- /fsrcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/fsrcnn.py -------------------------------------------------------------------------------- /lapsrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/lapsrn.py -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/logger.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/model.py -------------------------------------------------------------------------------- /srcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/srcnn.py -------------------------------------------------------------------------------- /srgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/srgan.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/utils.py -------------------------------------------------------------------------------- /vdsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/togheppi/pytorch-super-resolution-model-collection/HEAD/vdsr.py --------------------------------------------------------------------------------