Paper Link: https://arxiv.org/pdf/1612.01939.pdf
Code Link: https://github.com/VisionLearningGroup/CORAL
What Had the Authors Proposed
- CORrelation ALignment (CORAL): minimizes domain shift by aligning the second-order statistics of source and target distributions
- A solution that applies a linear transformation to source features to align them with target features before classifier training
- How to apply CORAL to classifier weights
- How to apply CORAL to deep neural networks
The Steps of the Linear Transformation

- Normalize the source and target features to zero mean and unit variance
- Remove the feature correlations of the source domain, which can be seen as the procedure of “de-coloring” the... read more
Comments