Skip to content

Official implementation of ProCST image-to-image translation for UDA-SS.

License

Notifications You must be signed in to change notification settings

shahaf1313/ProCST

Repository files navigation

ProCST: Boosting Semantic Segmentation Using Progressive Cyclic Style-Transfer

[Arxiv] [Paper] DomainGap

In this work, we propose a novel two-stage framework for improving unsupervised domain adaptation (UDA) techniques.

In the first step, we progressively train a multi-scale neural network to perform an initial transfer between the source data to the target data. We denote the new transformed data as "Source in Target" (SiT).

Then, we use the generated SiT data as the input to any standard UDA approach. This new data has a reduced domain gap from the desired target domain, and the applied UDA approach further closes the gap.

We exhibit the improvement achieved by our framework with two state-of-the-art UDA methods for semantic segmentation, DAFormer and ProDA, on two UDA tasks, GTA5 to Cityscapes and Synthia to Cityscapes.

Full SiT datasets and checkpoints of boosted UDA methods are provided at the bottom of this page.

NEW: We report on improvement of the new UDA method HRDA!

Results summary using our runs:

ProCSTImprovement

Full model and losses flowchart:

model_and_loss

Translation GIF. Top row: GTA5 → Cityscapes translation, bottom row: Synthia → Cityscapes translation

procst_translation \label{2}

Setup Environment And Datasets

Environment

Please be sure to install python version >= 3.8. First, set up a new virtual environment:

python -m venv ~/venv/procst
source ~/venv/procst/bin/activate

Clone ProCST repository and install requirements:

git clone https://github.com/shahaf1313/ProCST
cd ProCST
pip install -r requirements.txt -f https://download.pytorch.org/whl/torch_stable.html

Download Pretrained Networks

Download the pretrained semantic segmentation networks trained on the source domain. Please create ./pretrained folder and save the pretrained networks there.

  1. GTA5 pretrained segmentation net
  2. Synthia pretrained segmentation net

Setup Datasets

Cityscapes: Please download leftImg8bit_trainvaltest.zip, leftImg8bit_trainextra.zip and gt_trainvaltest.zip from here and extract them to data/cityscapes. Pay attention to delete the corrupted image 'troisdorf_000000_000073_leftImg8bit.png' from the dataset, as the link suggests.

GTA5: Please download all image and label packages from here and extract them to data/gta.

Synthia: Please download SYNTHIA-RAND-CITYSCAPES from here and extract it to data/synthia.

The final folder structure should look like this:

ProCST
├── ...
├── data
│   ├── cityscapes
│   │   ├── leftImg8bit
│   │   │   ├── train
│   │   │   ├── val
│   │   ├── gtFine
│   │   │   ├── train
│   │   │   ├── val
│   ├── gta
│   │   ├── images
│   │   ├── labels
│   ├── synthia
│   │   ├── RGB
│   │   ├── GT
│   │   │   ├── LABELS
├── pretrained
│   ├── pretrained_semseg_on_gta5.pth
│   ├── pretrained_semseg_on_synthia.pth
├── ...

Train ProCST Model

Model is trained using one NVIDIA A6000 GPU with 48GB of memory.

The --gpus flag is mandatory. In the command line, insert GPU number instead of gpu_id. For example, if we chose to train on GPU number 3, we should enter --gpus 3.

GTA5 → Cityscapes:

python ./train_procst.py --batch_size_list 32 16 3 --gpus gpu_id

Synthia → Cityscapes:

python ./train_procst.py --source=synthia --src_data_dir=data/synthia --batch_size_list 32 16 3 --gpus gpu_id

Boosting UDA methods

After training a full ProCST model, we are ready to boost the performance of UDA methods. For your convenience, we attach ProCST pretrained models:

  1. ProCST GTA5→Cityscapes pretrained model
  2. ProCST Synthia→Cityscapes pretrained model

First, we will generate the SiT Dataset using the pretrained models. Please enter the path to the pretrained model in the --trained_procst_path flag, and choose the output images folder using the --sit_output_path flag.

GTA5 → Cityscapes:

python ./create_sit_dataset.py --batch_size=1 --trained_procst_path=path/to/pretrained_sit_model --sit_output_path=path/to/save/output_images --gpus gpu_id

Synthia → Cityscapes:

python ./create_sit_dataset.py --source=synthia --src_data_dir=data/synthia --batch_size=1 --trained_procst_path=path/to/pretrained_sit_model --sit_output_path=path/to/save/output_images --gpus gpu_id

After successfully generating SiT dataset, we can now replace the original source images with the resulting SiT images. Segmentation maps remain unchanged due to the Content Preservation property of ProCST.

Checkpoints: ProCST + HRDA

We provide checkpoints of the combined ProCST+HRDA, trained on GTA5→Cityscapes and Synthia→Cityscapes. Results can be tested on Cityscapes validation set.

  1. GTA5→Cityscapes checkpoint: 74.7% mIoU
  2. Synthia→Cityscapes checkpoint: 66.7% mIoU

In order to evaluate results using the above checkpoints, please refer to the original HRDA repository.

After setting up the required environment, use the given checkpoints as an input to test shell script:

cd path/to/HRDA/directory
cd work_dirs # if this directory does not exits, than please create it.
# download checkpoint .zip file and unzip it in this directory.
chmod +w path/to/checkpoint_directory
cd path/to/HRDA/directory
sh test.sh path/to/checkpoint_directory

Checkpoints: ProCST + DAFormer

We provide checkpoints of the combined ProCST+DAFormer, trained on GTA5→Cityscapes and Synthia→Cityscapes. Results can be tested on Cityscapes validation set.

  1. GTA5→Cityscapes checkpoint: 69.5% mIoU
  2. Synthia→Cityscapes checkpoint: 62.4% mIoU

In order to evaluate results using the above checkpoints, please refer to the original DAFormer repository.

After setting up the required environment, use the given checkpoints as an input to test shell script:

cd path/to/DAFormer/directory
cd work_dirs # if this directory does not exits, than please create it.
# download checkpoint .zip file and unzip it in this directory.
chmod +w path/to/checkpoint_directory
cd path/to/DAFormer/directory
sh test.sh path/to/checkpoint_directory

ProCST's translated SiT Datasets

We provide the SiT datasets that were translated by ProCST of both GTA5 and Synthia to Cityscapes:

  1. SiT dataset of GTA5 translated to Cityscapes
  2. SiT dataset of Synthia translated to Cityscapes

Acknowledgements

This project uses on the following open-source projects. We thank their authors for making the source code publically available.

About

Official implementation of ProCST image-to-image translation for UDA-SS.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages