zoukankan      html  css  js  c++  java
  • 卷积神经网络Convolutional Neural Networks

    In the previous post, we figured out how to do forward and backward propagation to compute the gradient for fully-connected neural networks, and used those algorithms to derive the Hessian-vector product algorithm for a fully connected neural network.

    Next, let's figure out how to do the exact same thing for convolutional neural networks. While the mathematical theory should be exactly the same, the actual derivation will be slightly more complex due to the architecture of convolutional neural networks.

     

    Convolutional Neural Networks

    First, let's go over out convolutional neural network architecture. There are several variations on this architecture; the choices we make are fairly arbitrary. However, the algorithms will be very similar for all variations, and their derivations will look very similar.

    A convolutional neural network consists of several layers. These layers can be of three types:

    • Convolutional: Convolutional layers consist of a rectangular grid of neurons. It requires that the previous layer also be a rectangular grid of neurons. Each neuron takes inputs from a rectangular section of the previous layer; the weights for this rectangular section are the same for each neuron in the convolutional layer. Thus, the convolutional layer is just an image convolution of the previous layer, where the weights specify the convolution filter.

      In addition, there may be several grids in each convolutional layer; each grid takes inputs from all the grids in the previous layer, using potentially different filters.

    • Max-Pooling: After each convolutional layer, there may be a pooling layer. The pooling layer takes small rectangular blocks from the convolutional layer and subsamples it to produce a single output from that block. There are several ways to do this pooling, such as taking the average or the maximum, or a learned linear combination of the neurons in the block. Our pooling layers will always be max-pooling layers; that is, they take the maximum of the block they are pooling.

    • Fully-Connected: Finally, after several convolutional and max pooling layers, the high-level reasoning in the neural network is done via fully connected layers. A fully connected layer takes all neurons in the previous layer (be it fully connected, pooling, or convolutional) and connects it to every single neuron it has. Fully connected layers are not spatially located anymore (you can visualize them as one-dimensional), so there can be no convolutional layers after a fully connected layer.

    The resulting neural network will look like this (LeNet): 

    Note that we are not really constrained to two-dimensional convolutional neural networks. We can in the exact same way build one- or three- dimensional convolutional neural networks; our filters will just become appropriately dimensioned, and our pooling layers will change dimension as well. We may, for instance, want to use one-dimensional convolutional nets on audio or three-dimensional nets on MRI data.

    Now that we've described the structure of our neural network, let's work through forward and backward propagation to do prediction and gradient computations in these neural networks.

     

    Forward Propagation

    Our neural networks now have three types of layers, as defined above. The forward and backward propagations will differ depending on what layer we're propagating through. We've already talked about fully connected networks in the previous post, so we'll just look at the convolutional layers and the max-pooling layers.

    Convolutional Layers

    Suppose that we have some N×NN×N square neuron layer which is followed by our convolutional layer. If we use an m×mm×m filter ωω, our convolutional layer output will be of size (Nm+1)×(Nm+1)(N−m+1)×(N−m+1). In order to compute the pre-nonlinearity input to some unit xijxijℓin our layer, we need to sum up the contributions (weighted by the filter components) from the previous layer cells:

    xij=a=0m1b=0m1ωaby1(i+a)(j+b).xijℓ=∑a=0m−1∑b=0m−1ωaby(i+a)(j+b)ℓ−1.

    This is just a convolution, which we can express in Matlab via

    conv2(x, w, 'valid')
    

    Then, the convolutional layer applies its nonlinearity:

    yij=σ(xij).yijℓ=σ(xijℓ).

    Max-Pooling Layers

    The max-pooling layers are quite simple, and do no learning themselves. They simply take some k×kk×k region and output a single value, which is the maximum in that region. For instance, if their input layer is a N×NN×N layer, they will then output a Nk×NkNk×Nk layer, as each k×kk×k block is reduced to just a single value via the max function.

     

    Backward Propagation

    Next, let's derive the backward propagation algorithms for these two layer types.

    Convolutional Layers

    Let's assume that we have some error function, EE, and we know the error values at our convolutional layer. What, then, are the error values at the layer before it, and what is the gradient for each weight in the convolutional layer?

    Note that the error we know and that we need to compute for the previous layer is the partial of EEwith respect to each neuron output (Eyij)(∂E∂yijℓ). Let's first figure out what the gradient component is for each weight by applying the chain rule. Note that in the chain rule, we must sum the contributions of all expressions in which the variable occurs.

    Eωab=i=0Nmj=0NmExijxijωab=i=0Nmj=0NmExijy1(i+a)(j+b)∂E∂ωab=∑i=0N−m∑j=0N−m∂E∂xijℓ∂xijℓ∂ωab=∑i=0N−m∑j=0N−m∂E∂xijℓy(i+a)(j+b)ℓ−1

    In this case, we must sum over all xijxijℓ expressions in which ωabωab occurs. (This corresponds to weight-sharing in the neural network!) Note that we know that xijωab=y1(i+a)(j+b)∂xijℓ∂ωab=y(i+a)(j+b)ℓ−1, just by looking at the forward propagation equations.

    In order to compute the gradient, we need to know the values Exij∂E∂xijℓ (which are often called "deltas"). The deltas are fairly straightforward to compute, once more using the chain rule:

    Exij=Eyijyijxij=Eyijxij(σ(xij))=Eyijσ(xij)∂E∂xijℓ=∂E∂yijℓ∂yijℓ∂xijℓ=∂E∂yijℓ∂∂xijℓ(σ(xijℓ))=∂E∂yijℓσ′(xijℓ)

    As we can see, since we already know the error at the current layer Eyij∂E∂yijℓ, we can very easily compute the deltas Exij∂E∂xijℓ at the current layer by just using the derivative of the activation function, σ(x)σ′(x). Since we know the errors at the current layer, we now have everything we need to compute the gradient with respect to the weights used by this convolutional layer.

    In addition to compute the weights for this convolutional layer, we need to propagate errors back to the previous layer. We can once more use the chain rule:

    Ey1ij=a=0m1b=0m1Ex(ia)(jb)x(ia)(jb)y1ij=a=0m1b=0m1Ex(ia)(jb)ωab∂E∂yijℓ−1=∑a=0m−1∑b=0m−1∂E∂x(i−a)(j−b)ℓ∂x(i−a)(j−b)ℓ∂yijℓ−1=∑a=0m−1∑b=0m−1∂E∂x(i−a)(j−b)ℓωab

    Looking back at the forward propagation equations, we can tell that x(ia)(jb)y1ij=ωab∂x(i−a)(j−b)ℓ∂yijℓ−1=ωab. This gives us the above value for the error at the previous layer. As we can see, that looks slightly like a convolution! We have our filter ωω being applied somehow to the layer; however, instead of having x(i+a)(j+b)x(i+a)(j+b) we have x(ia)(jb)x(i−a)(j−b). In addition, note that the expression above only makes sense for points that are at least mm away from the top and left edges. In order to fix this, we must pad the top and left edges with zeros. If we do that, then this is simply a convolution using ωω which has been flipped along both axes!

    Max-Pooling Layers

    As noted earlier, the max-pooling layers do not actually do any learning themselves. Instead, then reduce the size of the problem by introducing sparseness. In forward propagation, k×kk×k blocks are reduced to a single value. Then, this single value acquires an error computed from backwards propagation from the previous layer. This error is then just forwarded to the place where it came from. Since it only came from one place in the k×kk×k block, the backpropagated errors from max-pooling layers are rather sparse.

     

    Conclusion

    Convolutional neural networks are an architecturally different way of processing dimensioned and ordered data. Instead of assuming that the location of the data in the input is irrelevant (as fully connected layers do), convolutional and max pooling layers enforce weight sharing translationally. This models the way the human visual cortex works, and has been shown to work incredibly well for object recognition and a number of other tasks. We can learn convolutional networks through traditional stochastic gradient descent; in addition, we could apply the Rv{}Rv{⋅} operator from the previous post to convolutional network gradient computation to get a Hessian-vector product algorithm, which would enable use to use Hessian-free optimization instead.

    from: http://andrew.gibiansky.com/blog/machine-learning/convolutional-neural-networks/

  • 相关阅读:
    架构之美阅读笔记05
    架构之美阅读笔记04
    已经导入到VS工具箱中的DevExpress如何使用
    C#中遇到的方法总结
    vs下C# WinForm 解决方案里面生成的文件都是什么作用?干什么的?
    ssh关于含有外键的传值中无法识别正确的action的原因和解决办法
    MVC模式在Java Web应用程序中的实例分析
    浅谈对MVC的理解
    简述23种设计模式
    浅谈对可用性和易用性的认识以及对如何增加系统功能的理解
  • 原文地址:https://www.cnblogs.com/GarfieldEr007/p/5326855.html
Copyright © 2011-2022 走看看