Paper Link: Unsupervised Domain Adaptation with Residual Transfer Networks (neurips.cc)
Code Link: https://github.com/thuml/transfer-caffe
The Authors Argue That:
- The source and target classifiers differ by a small residual function (A theory that is not testified)
Overall Structure

- Use tensor product to fuse the high-level features
- Feature Adaptation: Calculate the MMD based on the fused high-level features (They didn’t use the Mk-MMD as proposed in DAN)
- Classifier Adaptation: Use a residual block following the source classifier to approximate target classifier (In plain words: they concatenated a residual block after the source classifier, and add the outputs of the residual... read more
Comments