You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A collection of implementations of adversarial unsupervised domain adaptation algorithms.
Domain adaptation
The goal of domain adaptation is to transfer the knowledge of a model to a different but related data distribution.
The model is trained on a source dataset and applied to a target dataset (usually unlabeled).
In this case, the model is trained on regular MNIST images, but we want to get good performance on MNIST with random color (without any labels).
In adversarial domain adaptation, this problem is usually solved by training an auxiliary model called the domain discriminator. The goal of this model is to classify examples as coming from the source or target distribution. The original classifier will then try to maximize the loss of the domain discriminator, comparable to the GAN training procedure.
Implemented papers
Paper: Unsupervised Domain Adaptation by Backpropagation, Ganin & Lemptsky (2014) Link: https://arxiv.org/abs/1409.7495 Description: Negates the gradient of the discriminator for the feature extractor to train both networks simultaneously. Implementation: revgrad.py
Paper: Adversarial Discriminative Domain Adaptation, Tzeng et al. (2017) Link: https://arxiv.org/abs/1702.05464 Description: Adapts the weights of a classifier pretrained on source data to produce similar features on the target data. Implementation: adda.py
Paper: Wasserstein Distance Guided Representation Learning, Shen et al. (2017) Link: https://arxiv.org/abs/1707.01217 Description: Uses a domain critic to minimize the Wasserstein Distance (with Gradient Penalty) between domains. Implementation: wdgrl.py
Results
Method
Accuracy on MNIST-M
Parameters
Source only
0.33
RevGrad
0.74
default
ADDA
0.76
default
WDGRL
0.78
--k-clf 10 --wd-clf 0.1
Instructions
Download the BSDS500 dataset and extract it somewhere. Point the DATA_DIR variable in config.py to this location.