├── LICENSE ├── README.md ├── configs └── LOL │ └── train │ ├── training_LOL.yaml │ ├── training_LOLv2_real.yaml │ └── training_LOLv2_syn.yaml ├── evaluation.py ├── figures ├── LOL_experiment.png ├── cover.png ├── module.png ├── motivation.png ├── network.png └── unpaired.png ├── model ├── .idea │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── model.iml │ ├── modules.xml │ └── workspace.xml ├── Walmafa.py ├── __pycache__ │ ├── Walmafa.cpython-38.pyc │ └── blocks.cpython-38.pyc └── blocks.py ├── requirements.txt ├── test.py ├── train.py ├── transform ├── __pycache__ │ ├── data_RGB.cpython-38.pyc │ └── dataset_RGB.cpython-38.pyc ├── data_RGB.py └── dataset_RGB.py └── utils ├── GaussianBlur.py ├── __init__.py ├── __pycache__ ├── __init__.cpython-310.pyc ├── __init__.cpython-38.pyc ├── dataset_utils.cpython-38.pyc ├── dir_utils.cpython-310.pyc ├── dir_utils.cpython-38.pyc ├── image_utils.cpython-38.pyc ├── losses.cpython-38.pyc └── model_utils.cpython-38.pyc ├── dataset_utils.py ├── dir_utils.py ├── image_utils.py ├── losses.py └── model_utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/README.md -------------------------------------------------------------------------------- /configs/LOL/train/training_LOL.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/configs/LOL/train/training_LOL.yaml -------------------------------------------------------------------------------- /configs/LOL/train/training_LOLv2_real.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/configs/LOL/train/training_LOLv2_real.yaml -------------------------------------------------------------------------------- /configs/LOL/train/training_LOLv2_syn.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/configs/LOL/train/training_LOLv2_syn.yaml -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/evaluation.py -------------------------------------------------------------------------------- /figures/LOL_experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/figures/LOL_experiment.png -------------------------------------------------------------------------------- /figures/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/figures/cover.png -------------------------------------------------------------------------------- /figures/module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/figures/module.png -------------------------------------------------------------------------------- /figures/motivation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/figures/motivation.png -------------------------------------------------------------------------------- /figures/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/figures/network.png -------------------------------------------------------------------------------- /figures/unpaired.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/figures/unpaired.png -------------------------------------------------------------------------------- /model/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /model/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /model/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/.idea/misc.xml -------------------------------------------------------------------------------- /model/.idea/model.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/.idea/model.iml -------------------------------------------------------------------------------- /model/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/.idea/modules.xml -------------------------------------------------------------------------------- /model/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/.idea/workspace.xml -------------------------------------------------------------------------------- /model/Walmafa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/Walmafa.py -------------------------------------------------------------------------------- /model/__pycache__/Walmafa.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/__pycache__/Walmafa.cpython-38.pyc -------------------------------------------------------------------------------- /model/__pycache__/blocks.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/__pycache__/blocks.cpython-38.pyc -------------------------------------------------------------------------------- /model/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/model/blocks.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/requirements.txt -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/train.py -------------------------------------------------------------------------------- /transform/__pycache__/data_RGB.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/transform/__pycache__/data_RGB.cpython-38.pyc -------------------------------------------------------------------------------- /transform/__pycache__/dataset_RGB.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/transform/__pycache__/dataset_RGB.cpython-38.pyc -------------------------------------------------------------------------------- /transform/data_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/transform/data_RGB.py -------------------------------------------------------------------------------- /transform/dataset_RGB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/transform/dataset_RGB.py -------------------------------------------------------------------------------- /utils/GaussianBlur.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/GaussianBlur.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dataset_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/dataset_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dir_utils.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/dir_utils.cpython-310.pyc -------------------------------------------------------------------------------- /utils/__pycache__/dir_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/dir_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/image_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/image_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/losses.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/losses.cpython-38.pyc -------------------------------------------------------------------------------- /utils/__pycache__/model_utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/__pycache__/model_utils.cpython-38.pyc -------------------------------------------------------------------------------- /utils/dataset_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/dataset_utils.py -------------------------------------------------------------------------------- /utils/dir_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/dir_utils.py -------------------------------------------------------------------------------- /utils/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/image_utils.py -------------------------------------------------------------------------------- /utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/losses.py -------------------------------------------------------------------------------- /utils/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpaulgeorge/WalMaFa/HEAD/utils/model_utils.py --------------------------------------------------------------------------------