Beyond Finite Layer Neural Networks: Bridging Deep Architectures and Numerical Differential Equations
Yiping Lu, Aoxiao Zhong, Quanzheng Li, Bin Dong
Introduction
Deep learning has achieved great success in may machine learning tasks. The end-to-end deep architectures have the ability to effectively extract features relevant to the given labels and achieve state-of-the-art accuracy in various applications (Bengio, 2009). Network design is one of the central task in deep learning. Its main objective is to grant the networks with strong generalization power using as few parameters as possible. The first ultra deep convolutional network is the ResNet (He et al., 2015b) which has skip connections to keep feature maps in different layers in the same scale and to avoid gradient vanishing. Structures other than the skip connections of the ResNet were also introduced to avoid gradient vanishing, such as the dense connections (Huang et al., 2016a), fractal path (Larsson et al., 2016) and Dirac initialization (Zagoruyko & Komodakis, 2017). Furthermore, there has been a lot of attempts to improve the accuracy of image classifications by modifying the residual blocks of the ResNet. Zagoruyko & Komodakis (2016) suggested that we need to double the number of layers of ResNet to achieve a fraction of a percent improvement of accuracy. They proposed a widened architecture that can efficiently improve the accuracy. Zhang et al. (2017) pointed out that simply modifying depth or width of ResNet might not be the best way of architecture design. Exploring structural diversity, which is an alternative dimension in network design, may lead to more effective networks. In Szegedy et al. (2017), Zhang et al. (2017), Xie et al. (2017), Li et al. (2017) and Hu et al. (2017), the authors further improved the accuracy of the networks by carefully designing residual blocks via increasing the width of each block, changing the topology of the network and following certain empirical observations. In the literature, the network design is mainly empirical.It remains a mystery whether there is a general principle to guide the design of effective and compact deep networks.
Observe that each residual block of ResNet can be written as which is one step of forward Euler discretization (AppendixA.1) of the ordinary differential equation (ODE) (E, 2017). This suggests that there might be a connection between discrete dynamic systems and deep networks with skip connections. In this work, we will show that many state-of-the-art deep network architectures, such as PolyNet (Zhang et al., 2017), FractalNet (Larsson et al., 2016) and RevNet (Gomez et al., 2017), can be consider as different discretizations of ODEs. From the perspective of this work, the success of these networks is mainly due to their ability to efficiently approximate dynamic systems. On a side note, differential equations is one of the most powerful tools used in low-level computer vision such as image denoising, deblurring, registration and segmentation (Osher & Paragios, 2003; Aubert & Kornprobst, 2006; Chan & Shen, 2005). This may also bring insights on the success of deep neural networks in low-level computer vision. Furthermore, the connection between architectures of deep neural networks and numerical approximations of ODEs enables us to design new and more effective deep architectures by selecting certain discrete approximations of ODEs. As an example, we design a new network structure called linear multi-step architecture (LM-architecture) which is inspired by the linear multi-step method in numerical ODEs (Ascher & Petzold, 1997). This architecture can be applied to any ResNet-like networks. In this paper, we apply the LM-architecture to ResNet and ResNeXt (Xie et al., 2017) and achieve noticeable improvements on CIFAR and ImageNet with comparable numbers of trainable parameters. We also explain the performance gain using the concept of modified equations from numerical analysis.
It is known in the literature that introducing randomness by injecting noise to the forward process can improve generalization of deep residual networks. This includes stochastic drop out of residual blocks (Huang et al., 2016b) and stochastic shakes of the outputs from different branches of each residual block (Gastaldi, 2017). In this work we show that any ResNet-like network with noise injection can be interpreted as a discretization of a stochastic dynamic system. This gives a relatively unified explanation to the stochastic learning process using stochastic control. Furthermore, by relating stochastic training strategy with stochastic dynamic system, we can easily apply stochastic training to the networks with the proposed LM-architecture. As an example, we introduce stochastic depth to LM-ResNet and achieve significant improvement over the original LM-ResNet on CIFAR10.
The link between ResNet (Figure 1(a)) and ODEs were first observed by E (2017), where the authors formulated the ODE as the continuum limit of the ResNet . Liao & Poggio (2016) bridged ResNet with recurrent neural network (RNN), where the latter is known as an approximation of dynamic systems. Sonoda & Murata (2017) and Li & Shi (2017) also regarded ResNet as dynamic systems that are the characteristic lines of a transport equation on the distribution of the data set. Similar observations were also made by Chang et al. (2017); they designed a reversible architecture to grant stability to the dynamic system. On the other hand, many deep network designs were inspired by optimization algorithms, such as the network LISTA (Gregor & LeCun, 2010) and the ADMM-Net (Yang et al., 2016). Optimization algorithms can be regarded as discretizations of various types of ODEs (Helmke & Moore, 2012), among which the simplest example is gradient flow.
Another set of important examples of dynamic systems is partial differential equations (PDEs), which have been widely used in low-level computer vision tasks such as image restoration. There were some recent attempts on combining deep learning with PDEs for various computer vision tasks, i.e. to balance handcraft modeling and data-driven modeling. Liu et al. (2010) and Liu et al. (2013) proposed to use linear combinations of a series of handcrafted PDE-terms and used optimal control methods to learn the coefficients. Later, Fang et al. (2017) extended their model to handle classification tasks and proposed an learned PDE model (L-PDE). However, for classification tasks, the dynamics (i.e. the trajectories generated by passing data to the network) should be interpreted as the characteristic lines of a PDE on the distribution of the data set. This means that using spatial differential operators in the network is not essential for classification tasks. Furthermore, the discretizations of differential operators in the L-PDE are not trainable, which significantly reduces the network’s expressive power and stability. Chen et al. (2015) proposed a feed-forward network in order to learn the optimal nonlinear anisotropic diffusion for image denoising. Unlike the previous work, their network used trainable convolution kernels instead of fixed discretizations of differential operators, and used radio basis functions to approximate the nonlinear diffusivity function. More recently, Long et al. (2017) designed a network, called PDE-Net, to learn more general evolution PDEs from sequential data. The learned PDE-Net can accurately predict the dynamical behavior of data and has the potential to reveal the underlying PDE model that drives the observed data.
In our work, we focus on a different perspective. First of all, we do not require the ODE associate to any optimization problem, nor do we assume any differential structures in . The optimal is learned for a given supervised learning task. Secondly, we draw a relatively comprehensive connection between the architectures of popular deep networks and discretization schemes of ODEs. More importantly, we demonstrate that the connection between deep networks and numerical ODEs enables us to design new and more effective deep networks. As an example, we introduce the LM-architecture to ResNet and ResNeXt which improves the accuracy of the original networks.
We also note that, our viewpoint enables us to easily explain why ResNet can achieve good accuracy by dropping out some residual blocks after training, whereas dropping off sub-sampling layers often leads to an accuracy drop (Veit et al., 2016). This is simply because each residual block is one step of the discretized ODE, and hence, dropping out some residual blocks only amounts to modifying the step size of the discrete dynamic system, while the sub-sampling layer is not a part of the ODE model. Our explanation is similar to the unrolled iterative estimation proposed by Greff et al. (2016), while the difference is that we believe it is the data-driven ODE that does the unrolled iterative estimation.
Numerical Differential Equation, Deep Networks and Beyond
In this section we show that many existing deep neural networks can be consider as different numerical schemes approximating ODEs of the form . Based on such observation, we introduce a new structure, called the linear multi-step architecture (LM-architecture) which is inspired by the well-known linear multi-step method in numerical ODEs. The LM-architecture can be applied to any ResNet-like networks. As an example, we apply it to ResNet and ResNeXt and demonstrate the performance gain of such modification on CIFAR and ImageNet data sets.
PolyNet (Figure 1(b)), proposed by Zhang et al. (2017), introduced a PolyInception module in each residual block to enhance the expressive power of the network. The PolyInception model includes polynomial compositions that can be described as
We observe that PolyInception model can be interpreted as an approximation to one step of the backward Euler (implicit) scheme (AppendixA.1):
Indeed, we can formally rewrite as
Therefore, the architecture of PolyNet can be viewed as an approximation to the backward Euler scheme solving the ODE . Note that, the implicit scheme allows a larger step size (Ascher & Petzold, 1997), which in turn allows fewer numbers of residual blocks of the network. This explains why PolyNet is able to reduce depth by increasing width of each residual block to achieve state-of-the-art classification accuracy.
FractalNet (Larsson et al., 2016) (Figure 1(c)) is designed based on self-similarity. It is designed by repeatedly applying a simple expansion rule to generate deep networks whose structural layouts are truncated fractals. We observe that, the macro-structure of FractalNet can be interpreted as the well-known Runge-Kutta scheme in numerical analysis. Recall that the recursive fractal structure of FractalNet can be written as . For simplicity of presentation, we only demonstrate the FractalNet of order 2 (i.e. ). Then, every block of the FractalNet (of order 2) can be expressed as
which resembles the Runge-Kutta scheme of order 2 solving the ODE (see AppendixA.2).
RevNet(Figure 1(d)), proposed by Gomez et al. (2017), is a reversible network which does not require to store activations during forward propagations. The RevNet can be expressed as the following discrete dynamic system
RevNet can be interpreted as a simple forward Euler approximation to the following dynamic system
Note that reversibility, which means we can simulate the dynamic from the end time to the initial time, is also an important notation in dynamic systems. There were also attempts to design reversible scheme in dynamic system such as Nguyen & Mcmechan (2015).
2 LM-ResNet: A New Deep Architecture From Numerical Differential Equation
We have shown that architectures of some successful deep neural networks can be interpreted as different discrete approximations of dynamic systems. In this section, we proposed a new structure, called linear multi-step structure (LM-architecture), based on the well-known linear multi-step scheme in numerical ODEs (which is briefly recalled in Appendix A.3). The LM-architecture can be written as follows
Implementation Details. For the data sets CIFAR10 and CIFAR100, we train and test our networks on the training and testing set as originally given by the data set. For ImageNet, our models are trained on the training set with 1.28 million images and evaluated on the validation set with 50k images. On CIFAR, we follow the simple data augmentation in Lee et al. (2015) for training: 4 pixels are padded on each side, and a 3232 crop is randomly sampled from the padded image or its horizontal flip. For testing, we only evaluate the single view of the original 3232 image. Note that the data augmentation used by ResNet (He et al., 2015b; Xie et al., 2017) is the same as Lee et al. (2015). On ImageNet, we follow the practice in Krizhevsky et al. (2012); Simonyan & Zisserman (2014). Images are resized with its shorter side randomly sampled in $for scale augmentation (Simonyan & Zisserman, 2014). The input image is224\times 224\left[\begin{matrix}1\times 1,64\\ 3\times 3,64\\ 1\times 1,256\end{matrix}\right]3\times 3{k_{n}}\mathcal{U}[-0.1,0]$. We initialize other parameters following the method introduced by He et al. (2015a). On CIFAR, we use SGD with a mini-batch size of 128, and 256 on ImageNet. During training, we apply a weight decay of 0.0001 for LM-ResNet and 0.0005 for LM-ResNeXt, and momentum of 0.9 on CIFAR. We apply a weight decay of 0.0001 and momentum of 0.9 for both LM-ResNet and LM-ResNeXt on ImageNet. For LM-ResNet on CIFAR10 (CIFAR100), we start with the learning rate of 0.1, divide it by 10 at 80 (150) and 120 (225) epochs and terminate training at 160 (300) epochs. For LM-ResNeXt on CIFAR, we start with the learning rate of 0.1 and divide it by 10 at 150 and 225 epochs, and terminate training at 300 epochs.
Results. Testing errors of our proposed LM-ResNet/LM-ResNeXt and some other deep networks on CIFAR are presented in Table 2. Figure 2 shows the overall improvements of LM-ResNet over ResNet on CIFAR10 with varied number of layers. We also observe noticeable improvements of both LM-ResNet and LM-ResNeXt on CIFAR100. Xie et al. (2017) claimed that ResNeXt can achieve lower testing error without pre-activation (pre-act). However, our results show that LM-ResNeXt with pre-act achieves lower testing errors even than the original ResNeXt without pre-act. Training and testing curves of LM-ResNeXt are plotted in Figure3. In Table 2, we also present testing errors of FractalNet and DenseNet (Huang et al., 2016a) on CIFAR 100. We can see that our proposed LM-ResNeXt29 has the best result. Comparisons between LM-ResNet and ResNet on ImageNet are presented in Table 3. The LM-ResNet shows improvement over ResNet with comparable number of trainable parameters. Note that the results of ResNet on ImageNet are obtained from “https://github.com/KaimingHe/deep-residual-networks”. It is worth noticing that the testing error of the 56-layer LM-ResNet is comparable to that of the 110-layer ResNet on CIFAR10; the testing error of the 164-layer LM-ResNet is comparable to that of the 1001-layer ResNet on CIFAR100; the testing error of the 50-layer LM-ResNet is comparable to that of the 101-layer ResNet on ImageNet. We have similar results on LM-ResNeXt and ResNeXt as well. These results indicate that the LM-architecture can greatly compress ResNet/ResNeXt without losing much of the performance. We will justify this mathematically at the end of this section using the concept of modified equations from numerical analysis.
Explanation on the performance boost via modified equations. Given a numerical scheme approximating a differential equation, its associated modified equation (Warming & Hyett, 1974) is another differential equation to which the numerical scheme approximates with higher order of accuracy than the original equation. Modified equations are used to describe numerical behaviors of numerical schemes. For example, consider the simple 1-dimensional transport equation . Both the Lax-Friedrichs scheme and Lax-Wendroff scheme approximates the transport equation. However, the associated modified equations of Lax-Friedrichs and Lax-Wendroff are
respectively, where . This shows that the Lax-Friedrichs scheme behaves diffusive, while the Lax-Wendroff scheme behaves dispersive. Consider the forward Euler scheme which is associated to ResNet, . Note that
Thus, the modified equation of forward Euler scheme reads as
Consider the numerical scheme used in the LM-structure . By Taylor’s expansion, we have
Then, the modified equation of the numerical scheme associated to the LM-structure
Comparing (2) with (3), we can see that when , the second order term of (3) is bigger than that of (2). The term represents acceleration which leads to acceleration of the convergence of when Su & Boyd (2015); Wilson et al. (2016). When with being an elliptic operator, the term introduce dispersion on top of the dissipation, which speeds up the flow of (Dong et al., 2017). In fact, this is our original motivation of introducing the LM-architecture (1). Note that when the dynamic is truly a gradient flow, i.e. , the difference equation of the LM-structure has a stability condition . In our experiments, we do observe that most of the coefficients are lying in (Figure 4). Moreover, the network is indeed accelerating at the end of the dynamic, for the learned parameters are negative and close to (Figure 4).
Stochastic Learning Strategy: A Stochastic Dynamic System Perspective
Although the original ResNet (He et al., 2015b) did not use dropout, several work (Huang et al., 2016b; Gastaldi, 2017) showed that it is also beneficial to inject noise during training. In this section we show that we can regard such stochastic learning strategy as an approximation to a stochastic dynamic system. We hope the stochastic dynamic system perspective can shed lights on the discovery of a guiding principle on stochastic learning strategies. To demonstrate the advantage of bridging stochastic dynamic system with stochastic learning strategy, we introduce stochastic depth during training of LM-ResNet. Our results indicate that the networks with proposed LM-architecture can also greatly benefit from stochastic learning strategies.
As an example, we show that the two stochastic learning methods introduced in Huang et al. (2016b) and Gastaldi (2017) can be considered as weak approximations of stochastic dynamic systems.
Shake-Shake Regularization. Gastaldi (2017) introduced a stochastic affine combination of multiple branches in a residual block, which can be expressed as
where . To find its corresponding stochastic dynamic system, we incorporate the time step size and consider
which reduces to the shake-shake regularization when . The above equation can be rewritten as
Since the random variable , following the discussion in Appendix B, the network of the shake-shake regularization is a weak approximation of the stochastic dynamic system
where is an dimensional Brownian motion, is an -dimensional vector whose elements are all 1s, is the dimension of and , and denotes the pointwise product of vectors. Note from (4) that we have alternatives to the original shake-shake regularization if we choose .
Stochastic Depth. Huang et al. (2016b) randomly drops out residual blocks during training in order to reduce training time and improve robustness of the learned network. We can write the forward propagation as
which reduces to the original stochastic drop out training when . The variance of is 1. If we further assume that , the condition(5) of Appendix B.2 is satisfied for small . Then, following the discussion in Appendix B, the network with stochastic drop out can be seen as a weak approximation to the stochastic dynamic system
Note that the assumption also suggests that we should set closer to for deeper blocks of the network, which coincides with the observation made by Huang et al. (2016b, Figure 8).
In general, we can interpret stochastic training procedures as approximations of the following stochastic control problem with running cost
where is the loss function, is the terminal time of the stochastic process, and is a regularization term.
2 Stochastic Training for Networks with LM-architecture
In this section, we extend the stochastic depth training strategy to networks with the proposed LM-architecture. In order to apply the theory of Itô process, we consider the 2nd order (which is related to the modified equation of the LM-structure (3)) and rewrite it as a 1st order ODE system
Following a similar argument as in the previous section, we obtain the following stochastic process
The above derivation suggests that the stochastic learning for networks using LM-architecture can be implemented simply by randomly dropping out the residual block with probability .
Implementation Details. We test LM-ResNet with stochastic training strategy on CIFAR10. In our experiments, all hyper-parameters are selected exactly the same as in (Huang et al., 2016b). The probability of dropping out a residual block at each layer is a linear function of the layer, i.e. we set the probability of dropping the current residual block as , where is the current layer of the network, is the depth of the network and is the dropping out probability of the previous layer. In our experiments, we select for LM-ResNet56 and for LM-ResNet110. During training with SGD, the initial learning rate is 0.1, and is divided by a factor of 10 after epoch 250 and 375, and terminated at 500 epochs. In addition, we use a weight decay of 0.0001 and a momentum of 0.9.
Results. Testing errors are presented in Table 4. Training and testing curves of LM-ResNet with stochastic depth are plotted in Figure5. Note that LM-ResNet110 with stochastic depth training strategy achieved a 4.80% testing error on CIFAR10, which is even lower that the ResNet1202 reported in the original paper. The benefit of stochastic training has been explained from difference perspectives, such as Bayesian (Kingma et al., 2015) and information theory (Shwartz-Ziv & Tishby, 2017; Achille & Soatto, 2016). The stochastic Brownian motion involved in the aforementioned stochastic dynamic systems introduces diffusion which leads to information gain and robustness.
Conclusion and Discussion
In this paper, we draw a relatively comprehensive connection between the architectures of popular deep networks and discretizations of ODEs. Such connection enables us to design new and more effective deep networks. As an example, we introduce the LM-architecture to ResNet and ResNeXt which improves the accuracy of the original networks, and the proposed networks also outperform FractalNet and DenseNet on CIFAR100. In addition, we demonstrate that networks with stochastic training process can be interpreted as a weak approximation to stochastic dynamic systems. Thus, networks with stochastic learning strategy can be casted as a stochastic control problem, which we hope to shed lights on the discovery of a guiding principle on the stochastic training process. As an example, we introduce stochastic depth to LM-ResNet and achieve significant improvement over the original LM-ResNet on CIFAR10.
As for our future work, if ODEs are considered as the continuum limits of deep neural networks (neural networks with infinite layers), more tools from mathematical analysis can be used in the study of neural networks. We can apply geometry insights, physical laws or smart design of numerical schemes to the design of more effective deep neural networks. On the other hand, numerical methods in control theory may inspire new optimization algorithms for network training. Moreover, stochastic control gives us a new perspective on the analysis of noise injections during network training.
Bin Dong is supported in part by NSFC 11671022 and The National Key Research and Development Program of China 2016YFC0207700. Yiping Lu is supported by the elite undergraduate training program of School of Mathematical Sciences in Peking University. Quanzheng Li is supported in part by the National Institutes of Health under Grant R01EB013293 and Grant R01AG052653.
References
Appendix
Appendix A Numerical ODE
In this section we briefly recall some concepts from numerical ODEs that are used in this paper. The ODE we consider takes the form . Interested readers should consult Ascher & Petzold (1997) for a comprehensive introduction to the subject.
The simplest approximation of is to discretize the time derivative by and approximate the right hand side by . This leads to the forward (explicit) Euler scheme
If we approximate the right hand side of the ODE by , we obtain the backward (implicit) Euler scheme
The backward Euler scheme has better stability property than the forward Euler, though we need to solve a nonlinear equation at each step.
A.2 Runge-Kutta Method
Runge-Kutta method is a set of higher order one step methods, which can be formulate as
Here, is an intermediate approximation to the solution at time , and the coefficients can be adjusted to achieve higher order accuracy. As an example, the popular 2nd-order Runge-Kutta takes the form
A.3 Linear Multi-step Method
Liear multi-step method generalizes the classical forward Euler scheme to higher orders. The general form of a step linear multi-step method is given by
where, are scalar parameters and . The linear multi-step method is explicit if , which is what we used to design the linear multi-step structure.
Appendix B Numerical Schemes For Stochastic Differential Equations
In this section we follow the setting of Kesendal (2000) and Evans (2013). We first give the definition of Brownian motion. The Brownian motion is a stochastic process satisfies the following assumptions
is for all ,
For all time instances , the random variables are independent. (Also known as independent increments.)
The Itô process satisfies , where denotes the standard Brownian motion. We can write as the following integral equation
Here is the Itô’s integral which can be defined as the limit of the sum
on the partition of .
B.2 Weak Convergence of Numerical Schemes
Given the Itô process satisfying , where is the standard Brownian motion, we can approximate the equation using the forward Euler scheme (Kloeden & Pearson, 1992)
Here, following the definition of Itô integral, is a Gaussian random variable with variance . It is known that the forward Euler scheme converges strongly to the Itô process. Note from (Kloeden & Pearson, 1992, Chapter 11) that if we replace by a random variable from a non-Gaussian distribution, the forward Euler scheme becomes the so-called simplified weak Euler scheme. The simplified weak Euler scheme converges weakly to the Itô process if satisfies the following condition
One can verify that the random variable from the uniform distribution over a interval with 0 mean, or a (properly scaled) Bernoulli random variable taking value 1 or -1 satisfies the condition (5).