├── AdaptSegNet ├── README.md ├── after.py ├── before.py ├── compute_iou.py ├── data │ ├── cityscapes_dataset.py │ └── gta5_dataset.py ├── evaluate_cityscapes.py ├── model │ ├── deeplab.py │ ├── deeplab_multi.py │ ├── deeplab_vgg.py │ └── discriminator.py └── utils │ └── loss.py ├── README.md ├── config.yaml ├── data ├── DLOWDataLoader.py ├── preprocess_Cityscapes.py └── preprocess_GTA5.py ├── infer.py ├── model ├── BaseNetwork.py ├── InterpolationGAN.py └── Modules.py ├── paper_review ├── DLOW.md ├── DLOW.pdf └── img │ ├── Adversarial_DA.png │ ├── DLOW.png │ ├── Interpolated.png │ ├── Interpolation_architecture.png │ ├── Overall_architecture.png │ ├── Pixel_level_DA.png │ ├── Segmentation.png │ └── Why_DA_needs.png ├── train.py └── util ├── Logger.py └── utils.py /AdaptSegNet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/README.md -------------------------------------------------------------------------------- /AdaptSegNet/after.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/after.py -------------------------------------------------------------------------------- /AdaptSegNet/before.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/before.py -------------------------------------------------------------------------------- /AdaptSegNet/compute_iou.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/compute_iou.py -------------------------------------------------------------------------------- /AdaptSegNet/data/cityscapes_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/data/cityscapes_dataset.py -------------------------------------------------------------------------------- /AdaptSegNet/data/gta5_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/data/gta5_dataset.py -------------------------------------------------------------------------------- /AdaptSegNet/evaluate_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/evaluate_cityscapes.py -------------------------------------------------------------------------------- /AdaptSegNet/model/deeplab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/model/deeplab.py -------------------------------------------------------------------------------- /AdaptSegNet/model/deeplab_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/model/deeplab_multi.py -------------------------------------------------------------------------------- /AdaptSegNet/model/deeplab_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/model/deeplab_vgg.py -------------------------------------------------------------------------------- /AdaptSegNet/model/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/model/discriminator.py -------------------------------------------------------------------------------- /AdaptSegNet/utils/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/AdaptSegNet/utils/loss.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/config.yaml -------------------------------------------------------------------------------- /data/DLOWDataLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/data/DLOWDataLoader.py -------------------------------------------------------------------------------- /data/preprocess_Cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/data/preprocess_Cityscapes.py -------------------------------------------------------------------------------- /data/preprocess_GTA5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/data/preprocess_GTA5.py -------------------------------------------------------------------------------- /infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/infer.py -------------------------------------------------------------------------------- /model/BaseNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/model/BaseNetwork.py -------------------------------------------------------------------------------- /model/InterpolationGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/model/InterpolationGAN.py -------------------------------------------------------------------------------- /model/Modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/model/Modules.py -------------------------------------------------------------------------------- /paper_review/DLOW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/DLOW.md -------------------------------------------------------------------------------- /paper_review/DLOW.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/DLOW.pdf -------------------------------------------------------------------------------- /paper_review/img/Adversarial_DA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Adversarial_DA.png -------------------------------------------------------------------------------- /paper_review/img/DLOW.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/DLOW.png -------------------------------------------------------------------------------- /paper_review/img/Interpolated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Interpolated.png -------------------------------------------------------------------------------- /paper_review/img/Interpolation_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Interpolation_architecture.png -------------------------------------------------------------------------------- /paper_review/img/Overall_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Overall_architecture.png -------------------------------------------------------------------------------- /paper_review/img/Pixel_level_DA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Pixel_level_DA.png -------------------------------------------------------------------------------- /paper_review/img/Segmentation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Segmentation.png -------------------------------------------------------------------------------- /paper_review/img/Why_DA_needs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/paper_review/img/Why_DA_needs.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/train.py -------------------------------------------------------------------------------- /util/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/util/Logger.py -------------------------------------------------------------------------------- /util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Euiyeon-Kim/DLOW-Pytorch/HEAD/util/utils.py --------------------------------------------------------------------------------