深度学习基础(二)—— 从多层感知机(MLP)到卷积神经网络(CNN)

                       

经典的多层感知机(Multi-Layer Perceptron)形式上是全连接(fully-connected)的邻接网络(adjacent network)。

 

That is, every neuron in the network is connected to every neuron in adjacent layers.


这里写图片描述

Local receptive fields

全连接的多层感知机中,输入视为(或者需转化为)一个列向量。而在卷积神经网络中,以手写字符识别为例,输入不再 reshape 为 (28*28, 1) 的列向量,而是作为 28×28 28×28

The network structure I’ve described so far can detect just a single kind of localized feature. To do image recognition we’ll need more than one feature map(特征映射). And so a complete convolutional layer consists of several different feature maps:


这里写图片描述

feature map:filter,kernel

In the example shown, there are 3 feature maps. Each feature map is defined by a set of 5×5 shared weights, and a single shared bias. The result is that the network can detect 3 different kinds of features(特征检测), with each feature being detectable across the entire image.

I’ve shown just 3 feature maps, to keep the diagram above simple. However, in practice convolutional networks may use more (and perhaps many more) feature maps. One of the early convolutional networks, LeNet-5, used 6 feature maps, each associated to a 5×5 local receptive field, to recognize MNIST digits. So the example illustrated above is actually pretty close to LeNet-5. In the examples we develop later in the chapter we’ll use convolutional layers with 20 and 40 feature maps. Let’s take a quick peek at some of the features which are learned*

           

再分享一下我老师大神的人工智能教程吧。零基础!通俗易懂!风趣幽默!还带黄段子!希望你也加入到我们人工智能的队伍中来!https://blog.csdn.net/jiangjunshow

你可能感兴趣的:(深度学习基础(二)—— 从多层感知机(MLP)到卷积神经网络(CNN))