Home

Awesome

Limitations of Post-Hoc Feature Alignment for Robustness


This is the code for the CVPR 2021 paper Limitations of Post-Hoc Feature Alignment for Robustness by Collin Burns and Jacob Steinhardt.

Abstract


Feature alignment is an approach to improving robustness to distribution shift that matches the distribution of feature activations between the training distribution and test distribution. A particularly simple but effective approach to feature alignment involves aligning the batch normalization statistics between the two distributions in a trained neural network. This technique has received renewed interest lately because of its impressive performance on robustness benchmarks. However, when and why this method works is not well understood. We investigate the approach in more detail and identify several limitations. We show that it only significantly helps with a narrow set of distribution shifts and we identify several settings in which it even degrades performance. We also explain why these limitations arise by pinpointing why this approach can be so effective in the first place. Our findings call into question the utility of this approach and Unsupervised Domain Adaptation more broadly for improving robustness in practice.

Dependencies


The code has the following requirements:

It also requires several datasets: The datasets used are:

Download the relevant datasets to ./data, or change the --root flag when running each script.

Overview of Scripts


When testing on an ImageNet dataset, make sure to use the flag: --model ResNet-50

Citation

If you find this useful in your research, please consider citing:

@article{burns2021limitations,
      title={Limitations of Post-Hoc Feature Alignment for Robustness}, 
      author={Collin Burns and Jacob Steinhardt},
      journal={Conference on Computer Vision and Pattern Recognition (CVPR)},
      year={2021}
}