This is the source code to reproduce the experiments of the NeurIPS 2020 paper "Neural Anisotropy Directions" by Guillermo Ortiz-Jimenez*, Apostolos Modas*, Seyed-Mohsen Moosavi-Dezfooli and Pascal Frossard.
In this work, we analyze the role of the network architecture in shaping the inductive bias of deep classifiers. To that end, we start by focusing on a very simple problem, i.e., classifying a class of linearly separable distributions, and show that, depending on the direction of the discriminative feature of the distribution, many state-of-the-art deep convolutional neural networks (CNNs) have a surprisingly hard time solving this simple task. We then define as neural anisotropy directions (NADs) the vectors that encapsulate the directional inductive bias of an architecture. These vectors, which are specific for each architecture and hence act as a signature, encode the preference of a network to separate the input data based on some particular features. We provide an efficient method to identify NADs for several CNN architectures and thus reveal their directional inductive biases. Furthermore, we show that, for the CIFAR-10 dataset, NADs characterize features used by CNNs to discriminate between different classes.
To run our code on a Linux machine with a GPU, install the Python packages in a fresh Anaconda environment:
$ conda env create -f environment.yml
$ conda activate nads
This repository contains code to reproduce the following experiments: Evaluation of CNNs on linearly separable data, computation of NADs, and poison CIFAR-10 experiment.
You can reproduce this experiments separately using their individual scripts, or have a look at the comprehensive Jupyter notebook.
The repository also contains a curated set of precomputed NADs for some common architectures stored as numpy arrays.
Architecture | Computation script |
---|---|
Logistic Regression | logreg_nad.py |
LeNet | lenet_nad.py |
VGG-11 | vgg11_nad.py |
ResNet-18 | resnet18_nad.py |
DenseNet-121 | densenet121_nad.py |
If you use this code, please cite the following paper:
@InCollection{OrtizModasNADs2020,
TITLE = {{Neural Anisotropy Directions}},
AUTHOR = {{Ortiz-Jimenez}, Guillermo and {Modas}, Apostolos and {Moosavi-Dezfooli}, Seyed-Mohsen and Frossard, Pascal},
BOOKTITLE = {Advances in Neural Information Processing Systems 34},
MONTH = dec,
YEAR = {2020}
}