A PyTorch implementation for paper Unsupervised Domain Adaptation by Backpropagation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1 KiB

7 years ago
# PyTorch-DANN
A pytorch implementation for paper *[Unsupervised Domain Adaptation by Backpropagation](http://sites.skoltech.ru/compvision/projects/grl/)*
InProceedings (icml2015-ganin15)
Ganin, Y. & Lempitsky, V.
Unsupervised Domain Adaptation by Backpropagation
Proceedings of the 32nd International Conference on Machine Learning, 2015
## Environment
7 years ago
- Python 2.7/3.6
- PyTorch 0.3.1post2
7 years ago
## Result
results of the default `params.py`
7 years ago
| | SVHN (Source) | MNIST (Target)|
7 years ago
| :--------------------------------: | :------------: | :-----------: |
7 years ago
| Source Classifier | 92.92% | 68.66% |
| DANN | | ----% |
## Other implementations
- authors(caffe) <https://github.com/ddtm/caffe>
- TensorFlow, <https://github.com/pumpikano/tf-dann>
- Theano, <https://github.com/shucunt/domain_adaptation>
- PyTorch, <https://github.com/fungtion/DANN>
7 years ago
## Credit
- <https://github.com/fungtion/DANN>
7 years ago
- <https://github.com/corenel/torchsharp>
- <https://github.com/corenel/pytorch-starter-kit>