# mode_normalization__a4e30322.pdf Published as a conference paper at ICLR 2019 MODE NORMALIZATION Lucas Deecke, Iain Murray & Hakan Bilen University of Edinburgh {l.deecke,i.murray,h.bilen}@ed.ac.uk Normalization methods are a central building block in the deep learning toolbox. They accelerate and stabilize training, while decreasing the dependence on manually tuned learning rate schedules. When learning from multi-modal distributions, the effectiveness of batch normalization (BN), arguably the most prominent normalization method, is reduced. As a remedy, we propose a more flexible approach: by extending the normalization to more than a single mean and variance, we detect modes of data on-the-fly, jointly normalizing samples that share common features. We demonstrate that our method outperforms BN and other widely used normalization techniques in several experiments, including single and multi-task datasets. 1 INTRODUCTION A challenge in optimizing deep learning models is the change in input distributions at each layer, complicating the training process. Normalization methods, such as batch normalization (BN, Ioffe & Szegedy, 2015) aim to overcome this issue often referred to as internal covariate shift (Shimodaira, 2000).1 When applied successfully in practice, BN enables the training of very deep networks, shortens training times by supporting larger learning rates, and reduces sensitivity to parameter initializations. As a result, BN has become an integral element of many state-of-the-art machine learning techniques (He et al., 2016; Silver et al., 2017). It can be difficult to standardize the activations in a neural network exposed to heterogeneous or multi-modal data. When training a deep neural network on images that come from a diverse set of visual domains, each with significantly different statistics, BN is not effective at normalizing the activations with a single mean and variance (Bilen & Vedaldi, 2017). In this paper we relax the assumption that the entire mini-batch should be normalized with the same mean and variance. Our new normalization method, mode normalization (MN), first assigns samples in a mini-batch to different modes via a gating network, and then normalizes each sample with estimators for its corresponding mode (Figure 1). We further show that MN can be incorporated into other normalization techniques such as group normalization (GN, Wu & He, 2018) by learning which filters should be grouped together. The proposed methods can easily be implemented as layers in standard deep learning libraries, and their parameters are learned jointly with the other parameters of the network in an end-to-end manner. We evaluate MN on multiple classification tasks where it achieved a consistent improvement over currently available normalization approaches. 2 RELATED WORK Normalization. Normalizing input data (Le Cun et al., 1998) or initial weights of neural networks (Glorot & Bengio, 2010) are known techniques to support faster model convergence, and have been studied extensively. More recently, normalization has become part of functional layers that adjust the internal activations of neural networks. Local response normalization (LRN) (Lyu & Simoncelli, 2008; Jarrett et al., 2009) is used in various models (Krizhevsky et al., 2012; Sermanet et al., 2014) to perform normalization in a local neighborhood, and thereby enforce competition 1The underlying mechanisms are still being explored from a theoretical perspective (Bjorck et al., 2018; Kohler et al., 2018; Santurkar et al., 2018). Published as a conference paper at ICLR 2019 g1(xn) xn µ1 σ 1 1 g K (xn) xn µK σ 1 K n Figure 1: In mode normalization, incoming samples {xn}N n=1 are weighted by a set of gating functions {gk}K k=1. Gated samples contribute to component-wise estimators µk and σk, under which the data is normalized. After a weighted sum, the batch is passed on to the next layer. After training, the shifts and scales {µk, σk}K k=1 are taken from running averages rather than batch statistics. between adjacent pixels in a feature map. BN (Ioffe & Szegedy, 2015) implements a more global normalization along the batch dimension. Unlike LRN, BN requires two distinct training and inference modes of operation. At training time, samples in each batch are normalized with the batch statistics, while during inference samples are normalized using precomputed statistics from the training set. Heterogeneity and small batch sizes can both lead to inconsistencies between training and test data. Our proposed method alleviates the former issue by better dealing with different modes in the data, simultaneously discovering these and normalizing the data accordingly. Several recent normalization methods (Ba et al., 2016; Ulyanov et al., 2017; Ioffe, 2017) have emerged that perform normalization along the channel dimension (Ba et al., 2016), or over a single sample (Ulyanov et al., 2017) to overcome the limitations of BN. Ioffe (2017) proposes a batch renormalization strategy that clips gradients for estimators by using a predefined range to prevent degenerate cases. While these methods are effective for training sequential and generative models respectively, they have not been able to reach the same level of performance as BN in supervised classification. Alongside these developments, BN has started to attract attention from theoretical viewpoints (Kohler et al., 2018; Santurkar et al., 2018). More recently, Wu and He (Wu & He, 2018) have proposed a simple yet effective alternative to BN by first dividing the channels into groups and then performing normalization within each group. The authors show that group normalization (GN) can be coupled with small batch sizes without any significant performance loss, and delivers comparable results to BN when the batch size is large. We build on this method in Section 3.2, and show that it is possible to automatically infer filter groupings. An alternative normalization strategy is to design a data-independent reparametrization of the weights in a neural network by implicitly whitening the representation obtained at each layer (Desjardins et al., 2015; Arpit et al., 2016). Lastly, Kalayeh & Shah (2019) propose fitting a Gaussian mixture model to account for the modality in intermediate feature distributions of some layers. While these methods show promising results, they do not generalize to arbitrary non-linearities and layers, or suffer from runtime restrictions. Mixtures of experts. Mixtures of experts (Mo E) (Jacobs et al., 1991; Jordan & Jacobs, 1994) are a family of models that involve combining a collection of simple learners to split up the learning problem. Samples are thereby allocated to differing subregions of the model that are best suited to deal with a given example. There is a vast body of literature describing how to incorporate Mo E with different types of expert architectures such as SVMs (Collobert et al., 2002), Gaussian processes (Tresp, 2001), or deep neural networks (Eigen et al., 2013; Shazeer et al., 2017). Most similar to ours, Eigen et al. (2013) propose using a different gating network at each layer in a multilayer network to enable an exponential number of combinations of expert opinions. While our method also uses a gating function at every layer to assign the samples in a mini-batch to separate modes, it differs from the above Mo E approaches in two key aspects: i) we use the assignments from the gating functions to normalize the data within a corresponding mode; ii) the normalized data is forwarded to a common module (i.e. a convolutional layer) rather than to multiple separate experts. Published as a conference paper at ICLR 2019 Our method is also loosely related to Squeeze-and-Excitation Networks (Hu et al., 2018), that adaptively recalibrate channel-wise feature responses with a gating function. Unlike their approach, we use the outputs of the gating function to normalize the responses within each mode. Multi-domain learning. Our approach also relates to methods that parametrize neural networks with domain-agnostic and specific layers, and transfer the agnostic parameters to the analysis of very different types of images (Bilen & Vedaldi, 2017; Rebuffiet al., 2017; 2018). In contrast to these methods, which require the supervision of domain knowledge to train domain-agnostic parameters, our method can automatically learn to discover modes both in single and multi-domain settings, without any supervision. Recent work studies the role of adaptive intermediate features based on task-conditioned inputs (Perez et al., 2017). From this viewpoint MN can be understood as a conditional layer, however it has the different focus of accounting for modality in intermediate feature distributions. We first review the formulations of BN and GN in Section 3.1, and introduce our method in Section 3.2. 3.1 BATCH AND GROUP NORMALIZATION Our goal is to learn a prediction rule f : X Y that infers a class label y Y for a previously unseen sample x X. For this purpose, we optimize the parameters of f on a training set {xi}Nd i=1 for which the corresponding label information {yi}Nd i=1 is available, where Nd denotes the number of samples in the data. Without loss of generality, in this paper we consider image data as the input, and deep convolutional neural networks as our model. In a slight abuse of notation, we also use the symbol x to represent the features computed by layers within the deep network, producing a three-dimensional tensor X = C H W where the dimensions indicate the number of feature channels, height and width respectively. Batch normalization (BN) computes estimators for the mini-batch {xn}N n=1 (usually N Nd) by average pooling over all but the channel dimensions.2 Then BN normalizes the samples in the batch as BN(xn) = α xn µ where µ and σ are the mean and standard deviation of the mini-batch, respectively. The parameters α and β are |C|-dimensional vectors representing a learned affine transformation along the channel dimensions, purposed to retain each layer s representative capacity (Ioffe & Szegedy, 2015). This normalizing transformation ensures that the mini-batch has zero mean and unit variance when viewed along the channel dimensions. Group normalization (GN) performs a similar transformation to that in (1), but normalizes along different dimensions. GN first separates channels c = 1, . . . , |C| into fixed groups Gj, over which it then jointly computes estimators, e.g. for the mean µj = |Gj| 1 P xc Gj xc. Because GN does not average the statistics along the mini-batch dimension, it is appealing when it is not practical to use large batch sizes. A potential problem when using GN is that channels that are being grouped together might get prevented from developing distinct characteristics in feature space. In addition, computing estimators from manually engineered rules as those found in BN and GN might be too restrictive under some circumstances, for example when jointly learning on multiple domains. 3.2 MODE NORMALIZATION The heterogeneous nature of complex datasets motivates us to propose a more flexible treatment of normalization. Before the actual normalization is carried out, the data is first organized into modes to which it likely belongs. To achieve this, we reformulate the normalization in the framework of 2How estimators are computed is what differentiates many of the normalization techniques currently available. Wu & He (2018) provide a detailed introduction. Published as a conference paper at ICLR 2019 Algorithm 1 Mode normalization, training phase. Input: parameters λ, K, batch of samples {xn}, small ε, learnable α, β, Ψ: C RK. Compute expert assignments: gnk softmax Ψ(xn) k for k = 1 to K do Determine new component-wise statistics: n gnk x k 1 Nk P n gnkxn x2 k 1 Nk P Update running means: x k λ x k + (1 λ) x k x2 k λ x2 k + (1 λ) x2 k end for for n = 1 to N do Normalize samples with component-wise estimators: µk x k σ2 k x2 k x 2 k ynk gnk xn µk q σ2 k+ε end for Return: {α P k ynk + β}n=1,...,N Algorithm 2 Mode normalization, test phase. Input: refer to Alg. 1. Compute expert assignments: gnk softmax Ψ(xn) k for n = 1 to N do Normalize samples with running average of component-wise estimators: µk x k σ2 k x2 k x 2 k ynk gnk xn µk q end for Return: {α P k ynk + β}n=1,...,N Algorithm 3 Mode group normalization. Input: parameter K, sample x C, small ε, learnable α, β, Ψ: R RK. Compute channel-wise gates: gck softmax Ψ(xc) k for k = 1 to K do Update estimators and normalize: µk x k σ2 k x2 k x 2 k yk x µk q end for Return: α mixtures of experts (Mo E). In particular, we introduce a set of simple gating functions {gk}K k=1 where gk : X [0, 1] and P k gk(x) = 1. In mode normalization (MN, Alg. 1), each sample in the mini-batch is then normalized under voting from its gate assignment: MN(xn) α K X k=1 gk(xn)xn µk where α and β are a learned affine transformation, just as in standard BN.3 The mean µk and variance σk estimates are weighted averages under the gating network. For example, the k th mean is estimated from the batch as µk = x k = 1 n gk(xn) xn, (3) where Nk =P n gk(xn). In our experiments, we average over W and H, and parametrize the gating functions via an affine transformation Ψ: C RK of the channels, which is jointly learned alongside the other parameters of the network. This is followed by a softmax activation, reminiscent of attention mechanisms (Denil et al., 2012; Vinyals et al., 2015). Mode normalization generalizes BN, which can be recovered as a special case by setting K =1, or if the gates collapse: gk(xn)=const. k, n. To demonstrate how the extra flexibility helps, Fig. 2 3Learning individual {(αk, βk)}K k=1 for each mode did not improve performance in preliminary experiments. Published as a conference paper at ICLR 2019 BN before after MN before after Figure 2: Channel-wise histograms for conv3-64-1 in VGG13. Top row shows BN before and after the normalization is applied to samples from CIFAR10. The bottom row shows how the layer s distribution is transformed when MN is inserted into the network. shows histograms over channels in layer conv3-64-1 of VGG13 (Simonyan & Zisserman, 2015) for 1024 samples on CIFAR10, both before and after the normalization via BN and MN with K =2. MN normalizes channels with multi-modal behavior, something that BN visibly struggles with. As in BN, during training we normalize samples with estimators computed from the current batch. To normalize the data during inference (Alg. 2), we keep track of component-wise running estimates, borrowing from online EM approaches (Capp e & Moulines, 2009; Liang & Klein, 2009). Running estimates are updated in each iteration with a memory parameter λ (0, 1], e.g. for the mean: x k = λ x k + (1 λ) x k. (4) Bengio et al. (2016) and Shazeer et al. (2017) propose the use of additional losses that either prevent all samples to focus on a single gate, encourage sparsity in the gate activations, or enforce variance over gate assignments. We did not find such penalties necessary for our MN experiments. Moreover, we wanted MN to be able to reduce to traditional BN, if that is the optimal thing to do. In practice, we seldom observed this behavior: gates tend to receive an even share of samples overall, and they are usually assigned to individual modes. 3.3 MODE GROUP NORMALIZATION As discussed in Section 2, GN is less sensitive to the batch size (Wu & He, 2018). Here, we show that GN can also be adapted to normalize based on soft assignments into different modes. Unlike BN, GN computes averages over individual samples instead of the entire mini-batch. This makes slight modifications necessary, resulting in mode group normalization (MGN, Alg. 3). Instead of learning mappings with their pre-image in X, in MGN we learn a gating network g: R RK that assigns channels to modes. After average-pooling over width and height, estimators are computed by averaging over channel values xc R, for example for the mean µk = x k = C 1 k P c gk(xc) xc, where Ck = P c gk(xc). Each sample is subsequently transformed via σk + β, (5) where α and β are learnable parameters for channel-wise affine transformations. One of the notable advantages of MGN (that it shares with GN) is that inputs are transformed in the same way during training and inference. A potential risk for clustering approaches is that clusters or modes might collapse into one (e.g., Xu et al., 2005). Although it is possible to address this with a regularizer, it has not been an issue in Published as a conference paper at ICLR 2019 either MN or MGN experiments. This is likely a consequence of the large dimensionality of feature spaces that we study in this paper, as well as sufficient levels of variation in the data. 4 EXPERIMENTS We consider two experimental settings to evaluate our methods: multi-task (Section 4.1) and single task (Section 4.2). All experiments use standard routines within Py Torch (Paszke et al., 2017).4 4.1 MULTI-TASK Data. In the first experiment, we wish to enforce heterogeneity in the data distribution, i.e. explicitly design a distribution of the form P = P d πd Pd. We generated a dataset whose images come from diverse distributions by combining four image datasets: i) MNIST (Le Cun, 1998) which contains grayscale scans of handwritten digits. The dataset has a total of 60 000 training samples, as well as 10 000 samples set aside for validation. ii) CIFAR-10 (Krizhevsky, 2009) is a dataset of colored images that show real world objects of one of ten classes. It contains 50 000 training and 10 000 test images. iii) SVHN (Netzer et al., 2011) is a real-world dataset consisting of 73 257 training samples, and 26 032 samples for testing. Each image shows one of ten digits in natural scenes. iv) Fashion MNIST (Xiao et al., 2017) consists of the same number of single-channel images as are contained in MNIST. The images contain fashion items such as sneakers, sandals, or dresses instead of digits as object classes. We assume that labels are mutually exclusive, and train a single network Le Net (Le Cun et al., 1989) with a 40-way classifier at the end to jointly learn predictions on them. Mode normalization. We trained for 3.5 million data touches (15 epochs), with learning rate reductions by 1/10 after 2.5 and 3 million data touches. We found that training for additional epochs did not notably improve performance. The batch size was N =128, and running estimates were kept with λ=0.1. We varied the number of modes in MN over K ={2, 4, 6}. Average performances over five random initializations as well as standard deviations are shown in Table 1. MN outperformed standard BN, as well as all other normalization methods. The additional overhead of MN is small; even in our naive implementation, setting K =6 resulted in roughly a 5% increase in runtime. However, increasing K did not always improve the performance. Higher mode numbers are likely to suffer from estimating statistics from smaller and smaller partitions of the batch, a known issue in traditional BN. Experiments with larger batch sizes support this argument (Appendix A). In all remaining trials, which involve single datasets and deeper networks, we therefore fixed K =2. Table 1: Test set error rates (%) of batch norm (BN), instance norm (IN, Ulyanov et al., 2017), layer norm (LN, Ba et al., 2016), and mode norm (MN) in the multi-task setting for a batch size of N =128. Shown are average top performances over five initializations alongside standard deviations. Additional results for N ={256, 512} are shown in the Appendix. BN IN LN MN K 26.91 1.08 28.87 2.28 27.31 0.71 23.16 1.23 2 24.25 0.71 4 25.12 1.48 6 Mode group normalization. Group normalization is designed specifically for applications in which large batch sizes become prohibitive. We simulated this regime by reducing batch sizes to N ={4, 8, 16}, and trained each model for 50 000 gradient updates. We used the same configuration as before, except for a smaller initial learning rate γ =0.02, which was reduced by 1/10 after 35 000 and 42 500 updates. In GN, we allocated two groups per layer, and accordingly set K =2 in MGN. As a baseline, results for BN and MN were also included. Average performances over five initializations and their standard deviations are shown in Table 2. As previously reported by Wu & He (2018), 4Accompanying code is available under github.com/ldeecke/mn-torch. Published as a conference paper at ICLR 2019 BN failed to maintain its performance when the batch size is small during training. Though MN performed slightly better than BN, its performance also degraded in this regime. GN is more robust to small batch sizes, yet MGN further improved over GN, and by combining the advantages of GN and MN achieved the best performance for different batch sizes among all four methods. Table 2: Test set error rates (%) for BN, MN, mode group norm (MGN) and group norm (GN) on small batch sizes. Shown are average top performances over five initializations alongside standard deviations. N BN MN GN MGN 4 33.40 0.75 32.80 1.59 32.15 1.10 31.30 1.65 8 31.98 1.53 29.05 1.51 28.60 1.45 26.83 1.34 16 30.38 0.60 28.70 0.68 27.63 0.45 26.00 1.68 4.2 SINGLE TASK Data. Here mode normalization is evaluated in single-image classification tasks, showing that it can be used to improve performance in several recently proposed convolutional networks. For this, we incorporated MN into multiple modern architectures, and evaluated it on CIFAR10 and CIFAR100 datasets and then on a large-scale dataset, ILSVRC12 (Deng et al., 2009). Unlike CIFAR10, CIFAR100 has 100 classes, but contains the same number of training images (600 images per class). ILSVRC12 contains around 1.2 million images from 1000 object categories. Network In Network. Since the original Network In Network (NIN, Lin et al., 2014) does not contain any normalization layers, we modified the network architecture to add them, coupling each convolutional layer with a normalization layer (either BN or MN). We trained the resulting models on CIFAR10 and CIFAR100 for 100 epochs with SGD and momentum, using a batch size of N =128. Initial learning rates were set to γ = 10 1, which we reduced by 1/10 at epochs 65 and 80 for all methods. Running averages were stored with λ = 0.1. During training we randomly flipped images horizontally, and cropped each image after padding it with four pixels on each side. Dropout (Srivastava et al., 2014) is known to occasionally cause issues in combination with BN (Li et al., 2018), and reducing it to 0.25 (as opposed to 0.5 in the original publication) improved performance. For this large model, incorporating MN with K = 2 into NIN adds less than 1% to the number of trainable parameters. We report the test error rates with NIN on CIFAR10 and CIFAR100 in Table 3 (left). NIN with BN obtains an error rate similar to that reported for the original network in Lin et al. (2014), while MN (K =2) achieves an additional boost of 0.4% and 0.6% over BN on CIFAR10 and CIFAR100, respectively. Table 3: Test set error rates (%) with BN and MN for NIN and VGG13. Network In Network Lin et al. BN MN CIFAR10 8.81 8.82 8.42 CIFAR100 32.30 31.66 8.28 7.79 31.15 30.06 VGG Networks. Another popular class of deep convolutional neural networks are VGG networks (Simonyan & Zisserman, 2015). In particular we trained a VGG13 with BN and MN on CIFAR10 and CIFAR100. For both datasets we optimized using SGD with momentum for 100 epochs, setting the initial learning rate to γ =0.1, and reducing it at epochs 65, 80, and 90 by a factor of 1/10. The batch size was N =128. As before, we set the number of modes in MN to K =2, and keep estimators with λ=0.1. When incorporated into the network, MN improves the performance of VGG13 by 0.4% on CIFAR10, and over 1% on CIFAR100, see Table 3 (right). Published as a conference paper at ICLR 2019 Residual Networks. Unlike NIN and VGG, Residual Networks (He et al., 2016) originally included layer-wise batch normalizations. We trained a Res Net20 on CIFAR10 and CIFAR100 in its original architecture (i.e. with BN), as well as with MN (K = 2), see Table 4 (left). On both datasets we followed the standard training procedure and trained both models for 160 epochs of SGD with momentum parameter of 0.9, and weight decay of 10 4. Running estimates were kept with λ=0.1, the batch size set to N =128. Our implementation of Res Net20 (BN in Table 4) performs slightly better than that reported in the original publication (8.42% versus 8.82%). Replacing BN with MN achieves a notable 0.45% and 0.7% performance gain over BN in CIFAR10 and CIFAR100, respectively. Using the same setup as for Res Net20, we ran additional trials using a deeper Res Net56. As shown in Table 4 (right), replacing all normalization layers with MN resulted in an improvement over BN of roughly 0.5% on CIFAR10, and 1% on CIFAR100. Table 4: Test error (%) for Res Net20, Res Net56 normalized with BN and MN. He et al. BN MN CIFAR10 8.75 8.44 7.99 CIFAR100 32.24 31.52 He et al. BN MN 6.97 6.87 6.47 29.70 28.69 We also tested our method in the large-scale image recognition task of ILSVRC12. Concretely, we replaced BN in a Res Net18 with MN (K =2), and trained both resulting models on ILSVRC12 for 90 epochs. We set the initial learning rate to γ =0.1, reducing it at epochs 30 and 60 by a factor of 1/10. SGD was used as optimizer (with momentum parameter set to 0.9, weight decay of 10 4). To accelerate training we distributed the model over four GPUs, with an overall batch size of N =256. As can be seen from Table 5, MN results in a small but consistent improvement over BN in terms of top-1 and top-5 errors. Table 5: Top-1 and top-5 error rates (%) of Res Net18 on Image Net ILSVRC12, with BN and MN. Top-k Error BN MN 1 30.25 30.07 5 10.90 10.65 Qualitative analysis. In Fig. 3 we evaluated the experts gk({xn}) for samples from the CIFAR10 test set in layers conv3-64-1 and conv-3-256-1 of VGG13, and show the samples that have been assigned the highest probability to belong to either of the K =2 modes. In the normalization belonging to conv3-64-1, MN is sensitive to a red-blue color mode, and separates images accordingly. In deeper layers, separations seem to occur on the semantic level. In conv-3-256-1 for instance, MN separates smaller objects from those that occupy a large portion of the image. 5 CONCLUSION Stabilizing the training process of deep neural networks is a challenging problem. Several normalization approaches that aim to tackle this issue have recently emerged, enabling training with higher learning rates, faster model convergence, and allowing for more complex network architectures. Here, we showed that normalization approaches can be extended to allow the network to jointly normalize its features within multiple modes. We further demonstrated that accounting for modality in intermediate feature distributions results in a consistent improvement in classification performance for various deep learning architectures. As part of future work, we plan to explore customized, layer-wise mode numbers in MN, and automatically determining them, e.g. by using concepts from sparse regularization. Published as a conference paper at ICLR 2019 conv3-256-1 Figure 3: Test samples from CIFAR10 that were clustered together by two experts in an early layer (top) and a deeper layer (bottom) of VGG13. 6 ACKNOWLEDGMENTS We gratefully acknowledge the support of Prof. Vittorio Ferrari and Timothy Hospedales for providing computational resources, and the NVIDIA Corporation for the donation of a Titan Xp GPU used in this research. Devansh Arpit, Yingbo Zhou, Bhargava Kota, and Venu Govindaraju. Normalization propagation: A parametric technique for removing internal covariate shift in deep networks. In Proceedings of the 33rd International Conference on Machine Learning, pp. 1168 1176, 2016. Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. ar Xiv:1607.06450, 2016. Emmanuel Bengio, Pierre-Luc Bacon, Joelle Pineau, and Doina Precup. Conditional computation in neural networks for faster models. In International Conference on Learning Representations, Workshop Track, 2016. Hakan Bilen and Andrea Vedaldi. Universal representations: The missing link between faces, text, planktons, and cat breeds. ar Xiv:1701.07275, 2017. Nils Bjorck, Carla P Gomes, Bart Selman, and Kilian Q Weinberger. Understanding batch normalization. In Advances in Neural Information Processing Systems 31, pp. 7705 7716, 2018. Olivier Capp e and Eric Moulines. On-line expectation maximization algorithm for latent data models. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 71(3):593 613, 2009. Ronan Collobert, Samy Bengio, and Yoshua Bengio. A parallel mixture of SVMs for very large scale problems. In Advances in Neural Information Processing Systems 15, pp. 633 640, 2002. Jia Deng, Wei Dong, Richard Socher, Li-Jia Li, Kai Li, and Li Fei-Fei. Image Net: A large-scale hierarchical image database. In Computer Vision and Pattern Recognition, pp. 248 255, 2009. Misha Denil, Loris Bazzani, Hugo Larochelle, and Nando de Freitas. Learning where to attend with deep architectures for image tracking. Neural Computation, 24(8):2151 2184, 2012. Guillaume Desjardins, Karen Simonyan, Razvan Pascanu, et al. Natural neural networks. In Advances in Neural Information Processing Systems 28, pp. 2071 2079, 2015. David Eigen, Marc Aurelio Ranzato, and Ilya Sutskever. Learning factored representations in a deep mixture of experts. ar Xiv:1312.4314, 2013. Published as a conference paper at ICLR 2019 Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neural networks. In Proceedings of the 13th International Conference on Artificial Intelligence and Statistics, pp. 249 256, 2010. Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Computer Vision and Pattern Recognition, pp. 770 778, 2016. Jie Hu, Li Shen, and Gang Sun. Squeeze-and-excitation networks. In Computer Vision and Pattern Recognition, pp. 7132 7141, 2018. Sergey Ioffe. Batch renormalization: Towards reducing minibatch dependence in batch-normalized models. In Advances in Neural Information Processing Systems 30, pp. 1942 1950, 2017. Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In Proceedings of the 32nd International Conference on Machine Learning, pp. 448 456, 2015. Robert A Jacobs, Michael I Jordan, Steven J Nowlan, and Geoffrey E Hinton. Adaptive mixtures of local experts. MIT Press, 1991. Kevin Jarrett, Koray Kavukcuoglu, Yann Le Cun, et al. What is the best multi-stage architecture for object recognition? In Computer Vision and Pattern Recognition, pp. 2146 2153, 2009. Michael I Jordan and Robert A Jacobs. Hierarchical mixtures of experts and the EM algorithm. Neural computation, 6(2):181 214, 1994. Mahdi M Kalayeh and Mubarak Shah. Training faster by separating modes of variation in batchnormalized models. IEEE Transactions on Pattern Analysis and Machine Intelligence, 2019. Jonas Kohler, Hadi Daneshmand, Aurelien Lucchi, Ming Zhou, Klaus Neymeyr, and Thomas Hofmann. Towards a theoretical understanding of batch normalization. ar Xiv:1805.10694, 2018. Alex Krizhevsky. Learning multiple layers of features from tiny images. MSc thesis, University of Toronto, 2009. Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Image Net classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25, pp. 1097 1105, 2012. Yann Le Cun. The MNIST database of handwritten digits, http://yann.lecun.com/exdb/mnist, 1998. Yann Le Cun, Bernhard Boser, John S Denker, Donnie Henderson, Richard E Howard, Wayne Hubbard, and Lawrence D Jackel. Backpropagation applied to handwritten zip code recognition. Neural Computation, 1(4):541 551, 1989. Yann Le Cun, L eon Bottou, Genevieve Orr, and Klaus-Robert M uller. Efficient backprop in neural networks: Tricks of the trade. Lecture Notes in Computer Science, 1524, 1998. Xiang Li, Shuo Chen, Xiaolin Hu, and Jian Yang. Understanding the disharmony between dropout and batch normalization by variance shift. ar Xiv:1801.05134, 2018. Percy Liang and Dan Klein. Online EM for unsupervised models. In Proceedings of human language technologies: The 2009 annual conference of the North American chapter of the association for computational linguistics, pp. 611 619. Association for Computational Linguistics, 2009. Min Lin, Qiang Chen, and Shuicheng Yan. Network in network. In Proceedings of the 2nd International Conference on Learning Representations, 2014. Siwei Lyu and Eero P Simoncelli. Nonlinear image representation using divisive normalization. In Computer Vision and Pattern Recognition, pp. 1 8, 2008. Yuval Netzer, Tao Wang, Adam Coates, Alessandro Bissacco, Bo Wu, and Andrew Y Ng. Reading digits in natural images with unsupervised feature learning. In NIPS Workshop on Deep Learning and Unsupervised Feature Learning, 2011. Published as a conference paper at ICLR 2019 Adam Paszke, Sam Gross, Soumith Chintala, Gregory Chanan, Edward Yang, Zachary De Vito, Zeming Lin, Alban Desmaison, Luca Antiga, and Adam Lerer. Automatic differentiation in Py Torch. In NIPS Autodiff Workshop, 2017. Ethan Perez, Florian Strub, Harm De Vries, Vincent Dumoulin, and Aaron Courville. Fi LM: Visual reasoning with a general conditioning layer. In NIPS Visually-Grounded Interaction and Language Workshop, 2017. S-A. Rebuffi, H. Bilen, and A. Vedaldi. Efficient parametrization of multi-domain deep neural networks. In Computer Vision and Pattern Recognition, pp. 8119 8127, 2018. Sylvestre-Alvise Rebuffi, Hakan Bilen, and Andrea Vedaldi. Learning multiple visual domains with residual adapters. In Advances in Neural Information Processing Systems 30, pp. 506 516, 2017. Shibani Santurkar, Dimitris Tsipras, Andrew Ilyas, and Aleksander Madry. How does batch normalization help optimization? In Advances in Neural Information Processing Systems 31, pp. 2488 2498, 2018. Pierre Sermanet, David Eigen, Xiang Zhang, Micha el Mathieu, Rob Fergus, and Yann Le Cun. Overfeat: Integrated recognition, localization and detection using convolutional networks. In Proceedings of the 2nd International Conference on Learning Representations, 2014. Noam Shazeer, Azalia Mirhoseini, Krzysztof Maziarz, Andy Davis, Quoc Le, Geoffrey Hinton, and Jeff Dean. Outrageously large neural networks: The sparsely-gated mixture-of-experts layer. In Proceedings of the 5th International Conference on Learning Representations, 2017. Hidetoshi Shimodaira. Improving predictive inference under covariate shift by weighting the loglikelihood function. Journal of statistical planning and inference, 90(2):227 244, 2000. David Silver, Julian Schrittwieser, Karen Simonyan, Ioannis Antonoglou, Aja Huang, Arthur Guez, Thomas Hubert, Lucas Baker, Matthew Lai, Adrian Bolton, et al. Mastering the game of Go without human knowledge. Nature, 550(7676):354, 2017. Karen Simonyan and Andrew Zisserman. Very deep convolutional networks for large-scale image recognition. In Proceedings of the 3rd International Conference on Learning Representations, 2015. Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: A simple way to prevent neural networks from overfitting. The Journal of Machine Learning Research, 15(1):1929 1958, 2014. Volker Tresp. Mixtures of Gaussian processes. In Advances in Neural Information Processing Systems 14, pp. 654 660, 2001. Dmitry Ulyanov, Andrea Vedaldi, and Victor Lempitsky. Improved texture networks: Maximizing quality and diversity in feed-forward stylization and texture synthesis. In Computer Vision and Pattern Recognition, pp. 6924 6932, 2017. Oriol Vinyals, Alexander Toshev, Samy Bengio, and Dumitru Erhan. Show and tell: A neural image caption generator. In Computer Vision and Pattern Recognition, pp. 3156 3164, 2015. Yuxin Wu and Kaiming He. Group normalization. In European Conference on Computer Vision, pp. 3 19, 2018. Han Xiao, Kashif Rasul, and Roland Vollgraf. Fashion-MNIST: a novel image dataset for benchmarking machine learning algorithms. ar Xiv:1708.07747, 2017. Linli Xu, James Neufeld, Bryce Larson, and Dale Schuurmans. Maximum margin clustering. In Advances in Neural Information Processing Systems 18, pp. 1537 1544, 2005. Published as a conference paper at ICLR 2019 A ADDITIONAL MULTI-TASK RESULTS Shown in Table 6 are additional results for jointly training on MNIST, CIFAR10, SVHN, and Fashion MNIST. The same network is used as in previous multi-task experiments, for hyperparameters see Section 4. In these additional experiments, we varied the batch size to N ={256, 512}. For larger batch sizes, increasing K to values larger than two increases performance, while for a smaller batch size of N =128 (c.f. Table 1), errors incurred by finite estimation prevent this benefit from appearing. Table 6: Test set error rates (%) of multiple normalization methods in the multi-task setting for large batch sizes. The table contains average performances over five initializations, alongside their standard deviation. N BN IN LN MN K 256 26.34 1.82 31.15 3.46 26.95 2.51 25.29 1.31 2 25.04 1.88 4 24.88 1.24 6 512 26.51 1.15 29.00 1.85 28.98 1.32 26.18 1.86 2 24.29 1.82 4 25.33 1.33 6