Home

Awesome

Source Guided Similarity Preservation (S2P)

This repository contains the code for the paper "Source Guided Similarity Preservation for Unsupervised Domain Adaptation" (WACV 2024).

Overview

Online Unsupervised Domain Adaptation (OUDA) for person Re-Identification (Re-ID) is the task of continuously adapting a model trained on a well-annotated source domain dataset to a target domain observed as a data stream. In OUDA, person Re-ID models face two main challenges: catastrophic forgetting and domain shift.

In this work, we propose a new Source-guided Similarity Preservation (S2P) framework to alleviate these two problems. Our framework is based on the extraction of a support set composed of source images that maximizes the similarity with the target data. This support set is used to identify feature similarities that must be preserved during the learning process. S2P can incorporate multiple existing UDA methods to mitigate catastrophic forgetting.

Our experiments show that S2P outperforms previous state-of-the-art methods on multiple real-to-real and synthetic-to-real challenging OUDA benchmarks.

<p align="center"> <img src="OpenUnReID/docs/teaser.PNG" width="70%"> </p>

For more details, please refer to our paper.

Framework Architecture

<p align="center"> <img src="OpenUnReID/docs/framework.PNG" width="100%"> </p>

Updates

[25/09/2023] S2P v0.1.0 is released.

Installation

Please refer to INSTALL.md for installation and dataset preparation.

Get Started

Training

To train S2P on MSMT17 as source domain and Market1501 as target domain, run the following command:

sbatch S2P_run.sh
sh run_s2p_train.sh ${RUN_NAME} --epochs 10 --iters 120 --KDloss 0.1 --MMDloss 0.1 

Arguments

Datasets

Acknowledgement

This repository is built upon OpenUnReID