├── PCANorm.py ├── README.md ├── ZCANorm.py ├── main_imgnet.py ├── models ├── __init__.py └── resnet.py ├── torch_utils.py └── utils.py /PCANorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/PCANorm.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/README.md -------------------------------------------------------------------------------- /ZCANorm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/ZCANorm.py -------------------------------------------------------------------------------- /main_imgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/main_imgnet.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | from resnet import * 2 | -------------------------------------------------------------------------------- /models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/models/resnet.py -------------------------------------------------------------------------------- /torch_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/torch_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeiWangTrento/Robust-Differentiable-SVD/HEAD/utils.py --------------------------------------------------------------------------------