diff --git a/README.md b/README.md index 499b76c..b6aa876 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,17 @@ implement Adversarial Discriminative Domain Adapation in PyTorch $ python train_source.py --logdir outputs $ python main.py --logdir outputs --trained outputs/best_model.pt --slope 0.2 ``` + + +## Result +### SVHN -> MNIST +| | Paper | This Repro | +| --- | --- | --- | +| Source only | 0.601 | 0.659 | +| ADDA | 0.760 | ~0.83 | + +![adversarial](adversarial.png) +![target_domain](target_domain.png) + +## Resource +- https://arxiv.org/pdf/1702.05464.pdf diff --git a/adversarial.png b/adversarial.png new file mode 100644 index 0000000..279c0f8 Binary files /dev/null and b/adversarial.png differ diff --git a/target_domain.png b/target_domain.png new file mode 100644 index 0000000..fb7705d Binary files /dev/null and b/target_domain.png differ