├── .gitignore ├── LICENSE ├── README.md ├── datasets.py ├── model.py ├── requirements.txt ├── resnext ├── __init__.py ├── config.py ├── resnext_101_32x4d_.py └── resnext_regular.py ├── test.py ├── tools ├── __init__.py ├── config.py ├── preprocess_ohaze_data.py └── utils.py ├── train.py └── train_ohaze.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/README.md -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/datasets.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/requirements.txt -------------------------------------------------------------------------------- /resnext/__init__.py: -------------------------------------------------------------------------------- 1 | from .resnext_regular import ResNeXt101 2 | -------------------------------------------------------------------------------- /resnext/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/resnext/config.py -------------------------------------------------------------------------------- /resnext/resnext_101_32x4d_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/resnext/resnext_101_32x4d_.py -------------------------------------------------------------------------------- /resnext/resnext_regular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/resnext/resnext_regular.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/test.py -------------------------------------------------------------------------------- /tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/tools/config.py -------------------------------------------------------------------------------- /tools/preprocess_ohaze_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/tools/preprocess_ohaze_data.py -------------------------------------------------------------------------------- /tools/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/tools/utils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/train.py -------------------------------------------------------------------------------- /train_ohaze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zijundeng/DM2F-Net/HEAD/train_ohaze.py --------------------------------------------------------------------------------