Skip to content

Domain Adaptation Based on the Triplet Loss

Notifications You must be signed in to change notification settings

bregmangh/M-ADDA

 
 

Repository files navigation

M-ADDA: Metric-based Adversarial Discriminative Domain Adaptation [Paper]

Accepted in the ICML 2018 Workshop of Domain Adaptation for Visual Understanding (DAVU).

Description

The idea is to cluster the source dataset using the triplet loss and then cluster the target dataset using adversarial learning and the center-magnet loss. The Figure below shows the resultant clusters after using this method. The different colored stars represent the cluster centers, each corresponding to a different digit category.

Source (MNIST) Target (USPS)

Requirements

  • Pytorch version 0.4 or higher.

Running pretrained models

To obtain the test results, run the following command,

python main.py -e usps2mnist mnist2usps uspsBig2mnistBig mnistBig2uspsBig -m test_model

The output should be,

mnist2usps          0.955676
mnistBig2uspsBig    0.980541
usps2mnist          0.951500
uspsBig2mnistBig    0.983100

which represent the accuracies obtained on the target test set.

  • mnistBig, and uspsBig use the full training set.
  • mnist, and usps use 2000 images from MNIST and 1800 images from USPS for training, respectively.

Training the models

To train the source and target models run the command,

python main.py -e usps2mnist mnist2usps uspsBig2mnistBig mnistBig2uspsBig -m train -rt 1 -rs 1

Citation

If you find the code useful for your research, please cite:

@Article{laradji2018m,
    title={M-ADDA: Unsupervised Domain Adaptation with Deep Metric Learning},
    author={Laradji, Issam and Babanezhad, Reza},
    journal={arXiv preprint arXiv:1807.02552},
    year = {2018}
}

About

Domain Adaptation Based on the Triplet Loss

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%