├── .gitignore ├── LICENSE ├── README.md ├── SECURITY.md ├── assets ├── overview.jpg ├── overview.pdf ├── overview_resized.jpg └── results.jpg ├── datasets ├── CUFED5.txt └── DATASETS.md ├── mmsr ├── mmsr │ ├── data │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── contras_dataset.cpython-38.pyc │ │ │ ├── data_sampler.cpython-38.pyc │ │ │ ├── ref_cufed_dataset.cpython-38.pyc │ │ │ ├── transforms.cpython-38.pyc │ │ │ └── util.cpython-38.pyc │ │ ├── contras_dataset.py │ │ ├── data_sampler.py │ │ ├── ref_cufed_dataset.py │ │ ├── transforms.py │ │ └── util.py │ ├── models │ │ ├── CR_DiffAug_file.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── CR_DiffAug_file.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── base_model.cpython-38.pyc │ │ │ ├── loss_utils.cpython-38.pyc │ │ │ ├── losses.cpython-38.pyc │ │ │ ├── lr_scheduler.cpython-38.pyc │ │ │ ├── networks.cpython-38.pyc │ │ │ ├── ref_restoration_model.cpython-38.pyc │ │ │ ├── sr_model.cpython-38.pyc │ │ │ ├── student_contras_distillation_model.cpython-38.pyc │ │ │ └── teacher_contras_model.cpython-38.pyc │ │ ├── archs │ │ │ ├── CustomLayers.py │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── CustomLayers.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── arch_util.cpython-38.pyc │ │ │ │ ├── discriminator_arch.cpython-38.pyc │ │ │ │ ├── ref_restoration_arch.cpython-38.pyc │ │ │ │ └── vgg_arch.cpython-38.pyc │ │ │ ├── arch_util.py │ │ │ ├── discriminator_arch.py │ │ │ ├── op │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── blocks.cpython-38.pyc │ │ │ │ │ ├── diffaug.cpython-38.pyc │ │ │ │ │ ├── fused_act.cpython-38.pyc │ │ │ │ │ ├── projector.cpython-38.pyc │ │ │ │ │ └── upfirdn2d.cpython-38.pyc │ │ │ │ ├── fused_act.py │ │ │ │ ├── fused_bias_act.cpp │ │ │ │ ├── fused_bias_act_kernel.cu │ │ │ │ ├── upfirdn2d.cpp │ │ │ │ ├── upfirdn2d.py │ │ │ │ └── upfirdn2d_kernel.cu │ │ │ ├── ref_restoration_arch.py │ │ │ ├── torch_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── custom_ops.py │ │ │ │ ├── misc.py │ │ │ │ ├── ops │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bias_act.cpp │ │ │ │ │ ├── bias_act.cu │ │ │ │ │ ├── bias_act.h │ │ │ │ │ ├── bias_act.py │ │ │ │ │ ├── conv2d_gradfix.py │ │ │ │ │ ├── conv2d_resample.py │ │ │ │ │ ├── fma.py │ │ │ │ │ ├── grid_sample_gradfix.py │ │ │ │ │ ├── upfirdn2d.cpp │ │ │ │ │ ├── upfirdn2d.cu │ │ │ │ │ ├── upfirdn2d.h │ │ │ │ │ └── upfirdn2d.py │ │ │ │ ├── persistence.py │ │ │ │ └── training_stats.py │ │ │ └── vgg_arch.py │ │ ├── base_model.py │ │ ├── loss_utils.py │ │ ├── losses.py │ │ ├── lr_scheduler.py │ │ ├── networks.py │ │ ├── ref_restoration_model.py │ │ ├── sr_model.py │ │ └── utils │ │ │ ├── CRDiffAug.py │ │ │ ├── distributed.py │ │ │ ├── fid_score.py │ │ │ ├── inception.py │ │ │ └── visualizer.py │ └── utils │ │ ├── CRDiffAug.py │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-38.pyc │ │ ├── dist_util.cpython-38.pyc │ │ ├── file_client.cpython-38.pyc │ │ ├── logger.cpython-38.pyc │ │ ├── metrics.cpython-38.pyc │ │ ├── options.cpython-38.pyc │ │ └── util.cpython-38.pyc │ │ ├── data │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── contras_dataset.cpython-38.pyc │ │ │ ├── data_sampler.cpython-38.pyc │ │ │ ├── ref_cufed_dataset.cpython-38.pyc │ │ │ ├── transforms.cpython-38.pyc │ │ │ └── util.cpython-38.pyc │ │ ├── contras_dataset.py │ │ ├── data_sampler.py │ │ ├── ref_cufed_dataset.py │ │ ├── ref_cufed_dataset_160.py │ │ ├── ref_cufed_dataset_last.py │ │ ├── transforms.py │ │ └── util.py │ │ ├── dist_util.py │ │ ├── distributed.py │ │ ├── fid_score.py │ │ ├── file_client.py │ │ ├── inception.py │ │ ├── logger.py │ │ ├── metrics.py │ │ ├── models │ │ ├── CODE_OF_CONDUCT.md │ │ ├── CR_DiffAug_file.py │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── SUPPORT.md │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── CR_DiffAug_file.cpython-38.pyc │ │ │ ├── __init__.cpython-38.pyc │ │ │ ├── __init__.cpython-39.pyc │ │ │ ├── base_model.cpython-38.pyc │ │ │ ├── loss_utils.cpython-38.pyc │ │ │ ├── losses.cpython-38.pyc │ │ │ ├── lr_scheduler.cpython-38.pyc │ │ │ ├── networks.cpython-38.pyc │ │ │ ├── ref_restoration_model.cpython-38.pyc │ │ │ ├── sr_model.cpython-38.pyc │ │ │ ├── student_contras_distillation_model.cpython-38.pyc │ │ │ └── teacher_contras_model.cpython-38.pyc │ │ ├── archs │ │ │ ├── CustomLayers.py │ │ │ ├── DCNv2 │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── __init__.py │ │ │ │ ├── dcn_v2.py │ │ │ │ ├── make.sh │ │ │ │ ├── setup.py │ │ │ │ └── src │ │ │ │ │ ├── cpu │ │ │ │ │ ├── dcn_v2_cpu.cpp │ │ │ │ │ └── vision.h │ │ │ │ │ ├── cuda │ │ │ │ │ ├── dcn_v2_cuda.cu │ │ │ │ │ ├── dcn_v2_im2col_cuda.cu │ │ │ │ │ ├── dcn_v2_im2col_cuda.h │ │ │ │ │ ├── dcn_v2_psroi_pooling_cuda.cu │ │ │ │ │ └── vision.h │ │ │ │ │ ├── dcn_v2.h │ │ │ │ │ └── vision.cpp │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── CustomLayers.cpython-38.pyc │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ ├── arch_util.cpython-38.pyc │ │ │ │ ├── blocks.cpython-38.pyc │ │ │ │ ├── contras_extractor_arch.cpython-38.pyc │ │ │ │ ├── corres_generation_arch.cpython-38.pyc │ │ │ │ ├── diffaug.cpython-38.pyc │ │ │ │ ├── discriminator_arch.cpython-38.pyc │ │ │ │ ├── fused_act.cpython-38.pyc │ │ │ │ ├── projector.cpython-38.pyc │ │ │ │ ├── ref_map_util.cpython-38.pyc │ │ │ │ ├── ref_restoration_arch.cpython-38.pyc │ │ │ │ ├── upfirdn2d.cpython-38.pyc │ │ │ │ └── vgg_arch.cpython-38.pyc │ │ │ ├── arch_util.py │ │ │ ├── contras_extractor_arch.py │ │ │ ├── corres_generation_arch.py │ │ │ ├── dcn.py │ │ │ ├── dcn │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ └── deform_conv.cpython-38.pyc │ │ │ │ ├── deform_conv.py │ │ │ │ ├── deform_conv_cuda.cpython-37m-x86_64-linux-gnu.so │ │ │ │ ├── make.sh │ │ │ │ ├── setup.py │ │ │ │ └── src │ │ │ │ │ ├── deform_conv_cuda.cpp │ │ │ │ │ └── deform_conv_cuda_kernel.cu │ │ │ ├── discriminator_arch.py │ │ │ ├── op │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ │ ├── __init__.cpython-38.pyc │ │ │ │ │ ├── blocks.cpython-38.pyc │ │ │ │ │ ├── diffaug.cpython-38.pyc │ │ │ │ │ ├── fused_act.cpython-38.pyc │ │ │ │ │ ├── projector.cpython-38.pyc │ │ │ │ │ └── upfirdn2d.cpython-38.pyc │ │ │ │ ├── fused_act.py │ │ │ │ ├── fused_bias_act.cpp │ │ │ │ ├── fused_bias_act_kernel.cu │ │ │ │ ├── upfirdn2d.cpp │ │ │ │ ├── upfirdn2d.py │ │ │ │ └── upfirdn2d_kernel.cu │ │ │ ├── ref_map_util.py │ │ │ ├── ref_restoration_arch.py │ │ │ ├── ref_restoration_arch.py.save │ │ │ ├── ref_restoration_arch.py.save.1 │ │ │ ├── ref_restoration_arch.py.save.2 │ │ │ ├── sample.py │ │ │ ├── torch_utils │ │ │ │ ├── __init__.py │ │ │ │ ├── custom_ops.py │ │ │ │ ├── misc.py │ │ │ │ ├── ops │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── bias_act.cpp │ │ │ │ │ ├── bias_act.cu │ │ │ │ │ ├── bias_act.h │ │ │ │ │ ├── bias_act.py │ │ │ │ │ ├── conv2d_gradfix.py │ │ │ │ │ ├── conv2d_resample.py │ │ │ │ │ ├── fma.py │ │ │ │ │ ├── grid_sample_gradfix.py │ │ │ │ │ ├── upfirdn2d.cpp │ │ │ │ │ ├── upfirdn2d.cu │ │ │ │ │ ├── upfirdn2d.h │ │ │ │ │ └── upfirdn2d.py │ │ │ │ ├── persistence.py │ │ │ │ └── training_stats.py │ │ │ └── vgg_arch.py │ │ ├── base_model.py │ │ ├── dataset │ │ │ └── dataset.py │ │ ├── loss_utils.py │ │ ├── losses.py │ │ ├── lr_scheduler.py │ │ ├── networks.py │ │ ├── ref_restoration_model.py │ │ ├── requirements.txt │ │ ├── sr_model.py │ │ ├── student_contras_distillation_model.py │ │ └── teacher_contras_model.py │ │ ├── options.py │ │ ├── util.py │ │ └── visualizer.py ├── test.py ├── train.py └── version.py ├── ops ├── local_relation │ ├── .gitignore │ ├── __init__.py │ ├── local_relation_func.py │ ├── setup.py │ └── src │ │ ├── local_relation_cuda.cpp │ │ └── local_relation_cuda_kernel.cu └── setup.py ├── options ├── test │ └── test_DARTS.yml └── train │ └── train_DATSR.yml ├── requirements.txt ├── scripts ├── back_projection │ ├── backprojection.m │ ├── main_bp.m │ └── main_reverse_filter.m ├── create_cufed_lmdb.py └── transfer_params_MSRResNet.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | mmsr/experiments/pretrained_models 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/SECURITY.md -------------------------------------------------------------------------------- /assets/overview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/assets/overview.jpg -------------------------------------------------------------------------------- /assets/overview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/assets/overview.pdf -------------------------------------------------------------------------------- /assets/overview_resized.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/assets/overview_resized.jpg -------------------------------------------------------------------------------- /assets/results.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/assets/results.jpg -------------------------------------------------------------------------------- /datasets/CUFED5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/datasets/CUFED5.txt -------------------------------------------------------------------------------- /datasets/DATASETS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/datasets/DATASETS.md -------------------------------------------------------------------------------- /mmsr/mmsr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/data/__pycache__/contras_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__pycache__/contras_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/data/__pycache__/data_sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__pycache__/data_sampler.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/data/__pycache__/ref_cufed_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__pycache__/ref_cufed_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/data/__pycache__/transforms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__pycache__/transforms.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/data/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/data/contras_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/contras_dataset.py -------------------------------------------------------------------------------- /mmsr/mmsr/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/data_sampler.py -------------------------------------------------------------------------------- /mmsr/mmsr/data/ref_cufed_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/ref_cufed_dataset.py -------------------------------------------------------------------------------- /mmsr/mmsr/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/transforms.py -------------------------------------------------------------------------------- /mmsr/mmsr/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/data/util.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/CR_DiffAug_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/CR_DiffAug_file.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/CR_DiffAug_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/CR_DiffAug_file.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/base_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/base_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/loss_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/loss_utils.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/losses.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/losses.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/lr_scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/lr_scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/networks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/networks.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/ref_restoration_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/ref_restoration_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/sr_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/sr_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/student_contras_distillation_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/student_contras_distillation_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/__pycache__/teacher_contras_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/__pycache__/teacher_contras_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/CustomLayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/CustomLayers.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__pycache__/CustomLayers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__pycache__/CustomLayers.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__pycache__/arch_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__pycache__/arch_util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__pycache__/discriminator_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__pycache__/discriminator_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__pycache__/ref_restoration_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__pycache__/ref_restoration_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/__pycache__/vgg_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/__pycache__/vgg_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/arch_util.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/discriminator_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/discriminator_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__pycache__/blocks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__pycache__/blocks.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__pycache__/diffaug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__pycache__/diffaug.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__pycache__/fused_act.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__pycache__/fused_act.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__pycache__/projector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__pycache__/projector.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/__pycache__/upfirdn2d.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/__pycache__/upfirdn2d.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/fused_act.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/fused_bias_act.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/upfirdn2d.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/upfirdn2d.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/op/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/op/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/ref_restoration_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/ref_restoration_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/custom_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/custom_ops.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/misc.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/bias_act.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/bias_act.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/bias_act.cu -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/bias_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/bias_act.h -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/bias_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/bias_act.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/conv2d_gradfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/conv2d_gradfix.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/conv2d_resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/conv2d_resample.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/fma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/fma.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/grid_sample_gradfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/grid_sample_gradfix.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.cu -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.h -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/ops/upfirdn2d.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/persistence.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/torch_utils/training_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/torch_utils/training_stats.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/archs/vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/archs/vgg_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/base_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/loss_utils.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/losses.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/lr_scheduler.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/networks.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/ref_restoration_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/ref_restoration_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/sr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/sr_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/utils/CRDiffAug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/utils/CRDiffAug.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/utils/distributed.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/utils/fid_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/utils/fid_score.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/utils/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/utils/inception.py -------------------------------------------------------------------------------- /mmsr/mmsr/models/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/models/utils/visualizer.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/CRDiffAug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/CRDiffAug.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/dist_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/dist_util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/file_client.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/file_client.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/logger.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/logger.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/metrics.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/metrics.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/options.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/options.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__pycache__/contras_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__pycache__/contras_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__pycache__/data_sampler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__pycache__/data_sampler.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__pycache__/ref_cufed_dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__pycache__/ref_cufed_dataset.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__pycache__/transforms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__pycache__/transforms.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/contras_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/contras_dataset.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/data_sampler.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/ref_cufed_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/ref_cufed_dataset.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/ref_cufed_dataset_160.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/ref_cufed_dataset_160.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/ref_cufed_dataset_last.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/ref_cufed_dataset_last.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/transforms.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/data/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/data/util.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/dist_util.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/distributed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/distributed.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/fid_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/fid_score.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/file_client.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/inception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/inception.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/logger.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/metrics.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/CR_DiffAug_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/CR_DiffAug_file.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/LICENSE -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/README.md -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/SECURITY.md -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/SUPPORT.md -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/CR_DiffAug_file.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/CR_DiffAug_file.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/base_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/base_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/loss_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/loss_utils.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/losses.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/losses.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/lr_scheduler.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/lr_scheduler.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/networks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/networks.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/ref_restoration_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/ref_restoration_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/sr_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/sr_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/student_contras_distillation_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/student_contras_distillation_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/__pycache__/teacher_contras_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/__pycache__/teacher_contras_model.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/CustomLayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/CustomLayers.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/.gitignore -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/LICENSE -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/README.md -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/dcn_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/dcn_v2.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/make.sh -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/setup.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cpu/dcn_v2_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cpu/dcn_v2_cpu.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cpu/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cpu/vision.h -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_cuda.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_im2col_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_im2col_cuda.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_im2col_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_im2col_cuda.h -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_psroi_pooling_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/dcn_v2_psroi_pooling_cuda.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/vision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/cuda/vision.h -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/dcn_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/dcn_v2.h -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/DCNv2/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/DCNv2/src/vision.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/CustomLayers.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/CustomLayers.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/arch_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/arch_util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/blocks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/blocks.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/contras_extractor_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/contras_extractor_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/corres_generation_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/corres_generation_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/diffaug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/diffaug.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/discriminator_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/discriminator_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/fused_act.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/fused_act.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/projector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/projector.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/ref_map_util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/ref_map_util.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/ref_restoration_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/ref_restoration_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/upfirdn2d.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/upfirdn2d.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/__pycache__/vgg_arch.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/__pycache__/vgg_arch.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/arch_util.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/contras_extractor_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/contras_extractor_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/corres_generation_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/corres_generation_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/__pycache__/deform_conv.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/__pycache__/deform_conv.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/deform_conv.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/deform_conv_cuda.cpython-37m-x86_64-linux-gnu.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/deform_conv_cuda.cpython-37m-x86_64-linux-gnu.so -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/make.sh -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/setup.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/discriminator_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/discriminator_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__pycache__/blocks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__pycache__/blocks.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__pycache__/diffaug.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__pycache__/diffaug.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__pycache__/fused_act.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__pycache__/fused_act.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__pycache__/projector.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__pycache__/projector.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/__pycache__/upfirdn2d.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/__pycache__/upfirdn2d.cpython-38.pyc -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/fused_act.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/fused_bias_act.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/upfirdn2d.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/upfirdn2d.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/op/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/op/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/ref_map_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/ref_map_util.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/ref_restoration_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/ref_restoration_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/ref_restoration_arch.py.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/ref_restoration_arch.py.save -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/ref_restoration_arch.py.save.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/ref_restoration_arch.py.save.1 -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/ref_restoration_arch.py.save.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/ref_restoration_arch.py.save.2 -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/sample.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/custom_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/custom_ops.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/misc.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/__init__.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.h -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/bias_act.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/conv2d_gradfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/conv2d_gradfix.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/conv2d_resample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/conv2d_resample.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/fma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/fma.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/grid_sample_gradfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/grid_sample_gradfix.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.cpp -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.cu -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.h -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/ops/upfirdn2d.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/persistence.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/torch_utils/training_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/torch_utils/training_stats.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/archs/vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/archs/vgg_arch.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/base_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/dataset/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/dataset/dataset.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/loss_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/loss_utils.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/losses.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/lr_scheduler.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/networks.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/ref_restoration_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/ref_restoration_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/requirements.txt -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/sr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/sr_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/student_contras_distillation_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/student_contras_distillation_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/models/teacher_contras_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/models/teacher_contras_model.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/options.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/util.py -------------------------------------------------------------------------------- /mmsr/mmsr/utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/mmsr/utils/visualizer.py -------------------------------------------------------------------------------- /mmsr/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/test.py -------------------------------------------------------------------------------- /mmsr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/train.py -------------------------------------------------------------------------------- /mmsr/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/mmsr/version.py -------------------------------------------------------------------------------- /ops/local_relation/.gitignore: -------------------------------------------------------------------------------- 1 | *.so 2 | _ext* 3 | __pycache__ 4 | build 5 | -------------------------------------------------------------------------------- /ops/local_relation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/ops/local_relation/__init__.py -------------------------------------------------------------------------------- /ops/local_relation/local_relation_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/ops/local_relation/local_relation_func.py -------------------------------------------------------------------------------- /ops/local_relation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/ops/local_relation/setup.py -------------------------------------------------------------------------------- /ops/local_relation/src/local_relation_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/ops/local_relation/src/local_relation_cuda.cpp -------------------------------------------------------------------------------- /ops/local_relation/src/local_relation_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/ops/local_relation/src/local_relation_cuda_kernel.cu -------------------------------------------------------------------------------- /ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/ops/setup.py -------------------------------------------------------------------------------- /options/test/test_DARTS.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/options/test/test_DARTS.yml -------------------------------------------------------------------------------- /options/train/train_DATSR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/options/train/train_DATSR.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/back_projection/backprojection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/scripts/back_projection/backprojection.m -------------------------------------------------------------------------------- /scripts/back_projection/main_bp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/scripts/back_projection/main_bp.m -------------------------------------------------------------------------------- /scripts/back_projection/main_reverse_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/scripts/back_projection/main_reverse_filter.m -------------------------------------------------------------------------------- /scripts/create_cufed_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/scripts/create_cufed_lmdb.py -------------------------------------------------------------------------------- /scripts/transfer_params_MSRResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/scripts/transfer_params_MSRResNet.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bia006/DARTS/HEAD/setup.py --------------------------------------------------------------------------------