├── GenMap_GTA.py ├── GenPseudoLabel_GTA.py ├── LICENSE ├── MultiScaleTest_GTA.py ├── Pretrain_GTA_ResNet.py ├── Pretrain_GTA_VGG.py ├── README.md ├── SEGAN_GTA.py ├── SelfTrain_GTA.py ├── StyleTrans_GTA.py ├── TGSTN_GTA.py ├── dataset ├── GTA5_imagelist_train.txt ├── __init__.py ├── cityscapes16_dataset.py ├── cityscapes_dataset.py ├── cityscapes_labellist_train.txt ├── cityscapes_labellist_val.txt ├── gta5_dataset.py ├── info.json ├── info16.json ├── synthia_dataset.py └── synthia_imagelist_train.txt ├── figure ├── Framework.jpg ├── SE-GAN_demo.gif └── TGSTN.jpg ├── model ├── Networks.py └── __init__.py ├── requirements.txt ├── synthia_script ├── GenMap_Synthia.py ├── GenPseudoLabel_Synthia.py ├── MultiScaleTest_Synthia.py ├── Pretrain_Synthia_ResNet.py ├── Pretrain_Synthia_VGG.py ├── SEGAN_Synthia.py ├── SelfTrain_Synthia.py ├── StyleTrans_Synthia.py └── TGSTN_Synthia.py └── utils ├── __init__.py ├── __pycache__ ├── __init__.cpython-36.pyc └── tools.cpython-36.pyc └── tools.py /GenMap_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/GenMap_GTA.py -------------------------------------------------------------------------------- /GenPseudoLabel_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/GenPseudoLabel_GTA.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiScaleTest_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/MultiScaleTest_GTA.py -------------------------------------------------------------------------------- /Pretrain_GTA_ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/Pretrain_GTA_ResNet.py -------------------------------------------------------------------------------- /Pretrain_GTA_VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/Pretrain_GTA_VGG.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/README.md -------------------------------------------------------------------------------- /SEGAN_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/SEGAN_GTA.py -------------------------------------------------------------------------------- /SelfTrain_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/SelfTrain_GTA.py -------------------------------------------------------------------------------- /StyleTrans_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/StyleTrans_GTA.py -------------------------------------------------------------------------------- /TGSTN_GTA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/TGSTN_GTA.py -------------------------------------------------------------------------------- /dataset/GTA5_imagelist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/GTA5_imagelist_train.txt -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/cityscapes16_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/cityscapes16_dataset.py -------------------------------------------------------------------------------- /dataset/cityscapes_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/cityscapes_dataset.py -------------------------------------------------------------------------------- /dataset/cityscapes_labellist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/cityscapes_labellist_train.txt -------------------------------------------------------------------------------- /dataset/cityscapes_labellist_val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/cityscapes_labellist_val.txt -------------------------------------------------------------------------------- /dataset/gta5_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/gta5_dataset.py -------------------------------------------------------------------------------- /dataset/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/info.json -------------------------------------------------------------------------------- /dataset/info16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/info16.json -------------------------------------------------------------------------------- /dataset/synthia_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/synthia_dataset.py -------------------------------------------------------------------------------- /dataset/synthia_imagelist_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/dataset/synthia_imagelist_train.txt -------------------------------------------------------------------------------- /figure/Framework.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/figure/Framework.jpg -------------------------------------------------------------------------------- /figure/SE-GAN_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/figure/SE-GAN_demo.gif -------------------------------------------------------------------------------- /figure/TGSTN.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/figure/TGSTN.jpg -------------------------------------------------------------------------------- /model/Networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/model/Networks.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/requirements.txt -------------------------------------------------------------------------------- /synthia_script/GenMap_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/GenMap_Synthia.py -------------------------------------------------------------------------------- /synthia_script/GenPseudoLabel_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/GenPseudoLabel_Synthia.py -------------------------------------------------------------------------------- /synthia_script/MultiScaleTest_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/MultiScaleTest_Synthia.py -------------------------------------------------------------------------------- /synthia_script/Pretrain_Synthia_ResNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/Pretrain_Synthia_ResNet.py -------------------------------------------------------------------------------- /synthia_script/Pretrain_Synthia_VGG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/Pretrain_Synthia_VGG.py -------------------------------------------------------------------------------- /synthia_script/SEGAN_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/SEGAN_Synthia.py -------------------------------------------------------------------------------- /synthia_script/SelfTrain_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/SelfTrain_Synthia.py -------------------------------------------------------------------------------- /synthia_script/StyleTrans_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/StyleTrans_Synthia.py -------------------------------------------------------------------------------- /synthia_script/TGSTN_Synthia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/synthia_script/TGSTN_Synthia.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/utils/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /utils/__pycache__/tools.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/utils/__pycache__/tools.cpython-36.pyc -------------------------------------------------------------------------------- /utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CausalLearning/SE-GAN/HEAD/utils/tools.py --------------------------------------------------------------------------------