Skip to content

A repository to check the ability of Domain Adversarial Neural Networks

License

Notifications You must be signed in to change notification settings

koukyo1994/domain-adversarial-nn

Repository files navigation

Checking the effectiveness of Domain Adversarial Neural Networks on Kaggle competition(s)

Domain Adversarial Neural Networks is a famous Unsupervised Domain Adaptation (UDA) algorithm and the first to combine Representation Learning with Domain Adaptation. It is said to be effective in the case where Source and Target follows the same input - output relationship whereas the distribution of the input is different between Source and Target (the case known as Covariate Shift).

In kaggle competition, it is often the case that a large discrepancy is present between train dataset and test dataset(domain shift). In some case, domain adaptation algorithms like DANN seem to fit for the task. However, to the best of our knowledge, these algorithms are seldom used in kaggle competitions. This may be because

  1. Kagglers don't know these algorithms. The ideas are not imported to the community.
  2. These algorithms are not useful for those competitions. The capabilities of those algorithms claimed in the paper have not been demonstrated in those competitions.

The purpose of this repository is to check whether DANN is to verify that DANN is actually an algorithm that can be used in Kaggle competitions.

The result is reported in this blog post (Japanese).

Installation

Python >= 3.6 is required. Hardware with GPU accelerator is recommended.

pip install -r requirements.txt

How to reproduce

MNIST vs MNISTM

  1. Download MNISTM dataset from Google Drive and put in input/digits/.
  2. Run the command below.
python main.py --config configs/000_digits.yml

To run training without DANN:

python main.py --config configs/002_digits_naive.yml

To get the figures in assets/digits/, first run training with the two commands above and then run

python digitviz.py

References

[1]: fungtion/DANN

[2]: Domain-Adversarial Training of Neural Networks

About

A repository to check the ability of Domain Adversarial Neural Networks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages