Home

Awesome

Variational Dropout Sparsifies Deep Neural Networks

This repo contains the code for our ICML17 paper, Variational Dropout Sparsifies Deep Neural Networks (talk, slides, poster, blog-post). We showed that Variational Dropout leads to extremely sparse solutions both in fully-connected and convolutional layers. Sparse VD reduced the number of parameters up to 280 times on LeNet architectures and up to 68 times on VGG-like networks with a negligible decrease of accuracy. This effect is similar to the Automatic Relevance Determination effect in empirical Bayes. However, in Sparse VD the prior distribution remaines fixed, so there is no additional risk of overfitting.

We visualize the weights of Sparse VD LeNet-5-Caffe network and demonstrate several filters of the first convolutional layer and a piece of the fully-connected layer :)

<p align="center"> <img height="318" src="http://ars-ashuha.ru/pdf/vdsdnn/conv.gif"/> <img height="320" src="http://ars-ashuha.ru/pdf/vdsdnn/fc.gif"/> </p>

ICML 2017 Oral Presentation by Dmitry Molchanov

ICML 2017 Oral Presentation by Dmitry Molchanov

MNIST Experiments

The table containes the comparison of different sparsity-inducing techniques (Pruning (Han et al., 2015b;a), DNS (Guo et al., 2016), SWS (Ullrich et al., 2017)) on LeNet architectures. Our method provides the highest level of sparsity with a similar accuracy

NetworkMethodErrorSparsity per LayerCompression
Original1.641
Pruning1.5992.0 − 91.0 − 74.012
LeNet-300-100DNS1.9998.2 − 98.2 − 94.556
SWS1.9423
(ours)SparseVD1.9298.9 − 97.2 − 62.068
Original0.81
Pruning0.7734 − 88 − 92.0 − 8112
LeNet-5DNS0.9186 − 97 − 99.3 − 96111
SWH0.97200
(ours)SparseVD0.7567 − 98 − 99.8 − 95280

CIFAR Experiments

The plot contains the accuracy and sparsity level for VGG-like architectures of different sizes. The number of neurons and filters scales as k. Dense networks were trained with Binary Dropout, and Sparse VD networks were trained with Sparse Variational Dropout on all layers. The overall sparsity level, achieved by our method, is reported as a dashed line. The accuracy drop is negligible in most cases, and the sparsity level is high, especially in larger networks.

<p align="center"> <img height="318" src="http://ars-ashuha.ru/pdf/vdsdnn/vgg.png"/> </p>

Environment setup

sudo apt install virtualenv python-pip python-dev
virtualenv venv --system-site-packages
source venv/bin/activate

pip install numpy tabulate 'ipython[all]' sklearn matplotlib seaborn  
pip install --upgrade https://github.com/Theano/Theano/archive/rel-0.9.0.zip
pip install --upgrade https://github.com/Lasagne/Lasagne/archive/master.zip

Launch experiments

source ~/venv/bin/activate
cd variational-dropout-sparsifies-dnn
THEANO_FLAGS='floatX=float32,device=gpu0,lib.cnmem=1' ipython ./experiments/<experiment>.py

PS: If you have CuDNN problem please look at this issue.

Further extensions

These two papers heavily rely on the Sparse Variational Dropout technique and extend it to other applications:

Citation

If you found this code useful please cite our paper

@article{molchanov2017variational,
  title={Variational Dropout Sparsifies Deep Neural Networks},
  author={Molchanov, Dmitry and Ashukha, Arsenii and Vetrov, Dmitry},
  journal={arXiv preprint arXiv:1701.05369},
  year={2017}
}