CVLGMLApr 13, 2019

Shakeout: A New Approach to Regularized Deep Neural Network Training

arXiv:1904.06593v162 citations
Originality Incremental advance
AI Analysis

This is an incremental improvement for deep learning practitioners, offering better regularization and sparsity compared to Dropout.

The paper tackles overfitting in deep neural networks by introducing Shakeout, a regularization method that randomly enhances or reverses unit contributions, and shows it outperforms Dropout on image datasets like MNIST, CIFAR-10, and ImageNet, leading to sparser weights and improved model compression.

Recent years have witnessed the success of deep neural networks in dealing with a plenty of practical problems. Dropout has played an essential role in many successful deep neural networks, by inducing regularization in the model training. In this paper, we present a new regularized training approach: Shakeout. Instead of randomly discarding units as Dropout does at the training stage, Shakeout randomly chooses to enhance or reverse each unit's contribution to the next layer. This minor modification of Dropout has the statistical trait: the regularizer induced by Shakeout adaptively combines $L_0$, $L_1$ and $L_2$ regularization terms. Our classification experiments with representative deep architectures on image datasets MNIST, CIFAR-10 and ImageNet show that Shakeout deals with over-fitting effectively and outperforms Dropout. We empirically demonstrate that Shakeout leads to sparser weights under both unsupervised and supervised settings. Shakeout also leads to the grouping effect of the input units in a layer. Considering the weights in reflecting the importance of connections, Shakeout is superior to Dropout, which is valuable for the deep model compression. Moreover, we demonstrate that Shakeout can effectively reduce the instability of the training process of the deep architecture.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes