├── EstimationNet.py ├── PDNet.py ├── README.md ├── data_utils.py ├── decom_model.py ├── imgs ├── cerl.png ├── cerl8.pdf ├── github-teaser.pdf ├── teaser.jpg └── teaser.png ├── models ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── basicblock.cpython-36.pyc │ ├── common.cpython-36.pyc │ ├── downsampler.cpython-36.pyc │ ├── network_dncnn.cpython-36.pyc │ ├── resnet.cpython-36.pyc │ ├── skip.cpython-36.pyc │ ├── texture_nets.cpython-36.pyc │ └── unet.cpython-36.pyc ├── basicblock.py ├── common.py ├── dcgan.py ├── downsampler.py ├── einstein.png ├── loss.py ├── loss_ssim.py ├── model_base.py ├── model_gan.py ├── model_plain.py ├── model_plain2.py ├── model_plain4.py ├── network_discriminator.py ├── network_dncnn.py ├── network_dpsr.py ├── network_feature.py ├── network_ffdnet.py ├── network_imdn.py ├── network_msrresnet.py ├── network_rrdb.py ├── network_srmd.py ├── network_usrnet.py ├── resnet.py ├── select_model.py ├── select_network.py ├── skip.py ├── texture_nets.py └── unet.py ├── perceptual.py ├── source_target_transforms.py ├── test.py ├── train.py └── utils.py /EstimationNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/EstimationNet.py -------------------------------------------------------------------------------- /PDNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/PDNet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/README.md -------------------------------------------------------------------------------- /data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/data_utils.py -------------------------------------------------------------------------------- /decom_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/decom_model.py -------------------------------------------------------------------------------- /imgs/cerl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/imgs/cerl.png -------------------------------------------------------------------------------- /imgs/cerl8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/imgs/cerl8.pdf -------------------------------------------------------------------------------- /imgs/github-teaser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/imgs/github-teaser.pdf -------------------------------------------------------------------------------- /imgs/teaser.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/imgs/teaser.jpg -------------------------------------------------------------------------------- /imgs/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/imgs/teaser.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/basicblock.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/basicblock.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/common.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/common.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/downsampler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/downsampler.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/network_dncnn.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/network_dncnn.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/resnet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/resnet.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/skip.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/skip.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/texture_nets.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/texture_nets.cpython-36.pyc -------------------------------------------------------------------------------- /models/__pycache__/unet.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/__pycache__/unet.cpython-36.pyc -------------------------------------------------------------------------------- /models/basicblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/basicblock.py -------------------------------------------------------------------------------- /models/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/common.py -------------------------------------------------------------------------------- /models/dcgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/dcgan.py -------------------------------------------------------------------------------- /models/downsampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/downsampler.py -------------------------------------------------------------------------------- /models/einstein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/einstein.png -------------------------------------------------------------------------------- /models/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/loss.py -------------------------------------------------------------------------------- /models/loss_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/loss_ssim.py -------------------------------------------------------------------------------- /models/model_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/model_base.py -------------------------------------------------------------------------------- /models/model_gan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/model_gan.py -------------------------------------------------------------------------------- /models/model_plain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/model_plain.py -------------------------------------------------------------------------------- /models/model_plain2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/model_plain2.py -------------------------------------------------------------------------------- /models/model_plain4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/model_plain4.py -------------------------------------------------------------------------------- /models/network_discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_discriminator.py -------------------------------------------------------------------------------- /models/network_dncnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_dncnn.py -------------------------------------------------------------------------------- /models/network_dpsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_dpsr.py -------------------------------------------------------------------------------- /models/network_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_feature.py -------------------------------------------------------------------------------- /models/network_ffdnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_ffdnet.py -------------------------------------------------------------------------------- /models/network_imdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_imdn.py -------------------------------------------------------------------------------- /models/network_msrresnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_msrresnet.py -------------------------------------------------------------------------------- /models/network_rrdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_rrdb.py -------------------------------------------------------------------------------- /models/network_srmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_srmd.py -------------------------------------------------------------------------------- /models/network_usrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/network_usrnet.py -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/resnet.py -------------------------------------------------------------------------------- /models/select_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/select_model.py -------------------------------------------------------------------------------- /models/select_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/select_network.py -------------------------------------------------------------------------------- /models/skip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/skip.py -------------------------------------------------------------------------------- /models/texture_nets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/texture_nets.py -------------------------------------------------------------------------------- /models/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/models/unet.py -------------------------------------------------------------------------------- /perceptual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/perceptual.py -------------------------------------------------------------------------------- /source_target_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/source_target_transforms.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VITA-Group/CERL/HEAD/utils.py --------------------------------------------------------------------------------