CVLGNEAug 3, 2015

On the Importance of Normalisation Layers in Deep Learning with Piecewise Linear Activation Units

arXiv:1508.00330v264 citations
AI Analysis

This addresses a performance bottleneck in deep learning models for computer vision researchers, though it is incremental as it builds on existing normalization techniques.

The paper tackles the problem of unbalanced data distribution in deep neural networks with piecewise linear activations, which can degrade performance by causing activations to become linear and models ill-conditioned; by introducing batch normalization, they achieve results better than or comparable to state-of-the-art on CIFAR-10, CIFAR-100, MNIST, and SVHN datasets.

Deep feedforward neural networks with piecewise linear activations are currently producing the state-of-the-art results in several public datasets. The combination of deep learning models and piecewise linear activation functions allows for the estimation of exponentially complex functions with the use of a large number of subnetworks specialized in the classification of similar input examples. During the training process, these subnetworks avoid overfitting with an implicit regularization scheme based on the fact that they must share their parameters with other subnetworks. Using this framework, we have made an empirical observation that can improve even more the performance of such models. We notice that these models assume a balanced initial distribution of data points with respect to the domain of the piecewise linear activation function. If that assumption is violated, then the piecewise linear activation units can degenerate into purely linear activation units, which can result in a significant reduction of their capacity to learn complex functions. Furthermore, as the number of model layers increases, this unbalanced initial distribution makes the model ill-conditioned. Therefore, we propose the introduction of batch normalisation units into deep feedforward neural networks with piecewise linear activations, which drives a more balanced use of these activation units, where each region of the activation function is trained with a relatively large proportion of training samples. Also, this batch normalisation promotes the pre-conditioning of very deep learning models. We show that by introducing maxout and batch normalisation units to the network in network model results in a model that produces classification results that are better than or comparable to the current state of the art in CIFAR-10, CIFAR-100, MNIST, and SVHN datasets.

Foundations

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

Your Notes