├── README.md ├── data ├── train_X │ ├── 1_hazed.jpg │ └── 2_hazed.jpg └── train_Y │ ├── 1_dehazed.jpg │ └── 2_dehazed.jpg ├── discriminator.py ├── generator.py ├── loss.py ├── test.py ├── train.py └── train_helper.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /data/train_X/1_hazed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/data/train_X/1_hazed.jpg -------------------------------------------------------------------------------- /data/train_X/2_hazed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/data/train_X/2_hazed.jpg -------------------------------------------------------------------------------- /data/train_Y/1_dehazed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/data/train_Y/1_dehazed.jpg -------------------------------------------------------------------------------- /data/train_Y/2_dehazed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/data/train_Y/2_dehazed.jpg -------------------------------------------------------------------------------- /discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/discriminator.py -------------------------------------------------------------------------------- /generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/generator.py -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/loss.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/train.py -------------------------------------------------------------------------------- /train_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niranjangavade98/CycleDehaze-Pytorch/HEAD/train_helper.py --------------------------------------------------------------------------------