
cnn
文章平均质量分 75
MiniCnCoder
这个作者很懒,什么都没留下…
展开
-
卷积神经网络闲扯-------也许并没有LUAN用的LRN
alexnet当中提出,不过VGGNet当中被视为是没啥LUAN用的~闲来无事也学习下(感性理解下):tensorflow函数:tf.nn.lrn(input,depth_radius=None,bias=None,alpha=None,beta=None,name=None)The 4-D input tensor is treated as a 3-D array of 1-D vectors...原创 2018-04-12 21:51:44 · 668 阅读 · 0 评论 -
卷积神经网络feature map shape以及参数个数计算
参考:https://www.cnblogs.com/hejunlin1992/p/7624807.html举例1: 比如输入是一个32x32x3的图像,3表示RGB三通道,每个filter/kernel是5x5x3,一个卷积核产生一个feature map,下图中,有6个5x5x3的卷积核,故输出6个feature map(activation map),大小即为28x28x6。 ...转载 2018-04-13 09:56:34 · 6177 阅读 · 0 评论