Skip to content

LanchJL/IMEC-ZSDE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IMEC-ZSDE

Official code of Imbuing, Enrichment and Calibration: Leveraging Language for Unseen Domain Expansion

image

Dataset

To download and use the data set, please refer to PODA:

  • CITYSCAPES: Follow the instructions in Cityscapes to download the images and semantic segmentation ground-truths. Please follow the dataset directory structure:

    <CITYSCAPES_DIR>/             % Cityscapes dataset root
    ├── leftImg8bit/              % input image (leftImg8bit_trainvaltest.zip)
    └── gtFine/                   % semantic segmentation labels (gtFine_trainvaltest.zip)
  • ACDC: Download ACDC images and ground truths from ACDC. Please follow the dataset directory structure:

    <ACDC_DIR>/                   % ACDC dataset root
    ├── rbg_anon/                 % input image (rgb_anon_trainvaltest.zip)
    └── gt/                       % semantic segmentation labels (gt_trainval.zip)
  • GTA5: Download GTA5 images and ground truths from GTA5. Please follow the dataset directory structure:

    <GTA5_DIR>/                   % GTA5 dataset root
    ├── images/                   % input image 
    └── labels/                   % semantic segmentation labels

Installation

Initially, please make sure your environment containing the required packages. If not, you can run:

$ cd repository
$ pip install -r requirements.txt

Then activate environment using:

$ conda activate env_name

Running IMEC

The IMEC algorithm consists of three steps: source-only training, DKI training, and fine-tuning. In the actual implementation, we provide detailed information for each step of separation to facilitate debugging.

source-only training

We directly use PODA's pre-trained weights here. Please download the corresponding file from PODA and place it in the following location:

<IMEC_DIR>/                   % IMEC root
├── pretrain/                 % Place the weights there

DKI training

$ cd run/
$ sh DKI_training.sh

Please pay attention to several main settings here:

  • dataset %the source dataset for training (cityscapes or gta5)
  • data_root %root to your dataset
  • DKI_save_dir %Dir used to store DKI weights
  • target_domain %The domain IMEC wants to extend

All prompt words are stored in Prompts/, and you can replace them with your own prompt words by modifying the corresponding files.

ELP&SPC

$ cd run/
$ sh ELP_SPC.sh

Please note the following settings for this step:

  • dataset %the source dataset for training (cityscapes or gta5)
  • data_root %root to your dataset
  • DKI_checkpoints %the path to DKI checkpoints
  • Style_dir %Dir used to store styles

Acknowledgment

We are grateful to the PODA for their excellent foundation, which has been instrumental in the development of our project.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published