1. 实现跨通道的交互和信息整合 1×1的卷积层(可能)引起人们的重视是在NIN的结构中,论文中林敏师兄的想法是利用MLP代替传统的线性卷积核,从而提高网络的表达能力。文中同时利用了跨通道pooling的角度解释,认为文中提出的MLP其实等价于在传统卷积核后面接cccp层,从而实现多个feature ...
分类:
Web程序 时间:
2017-05-30 19:27:32
阅读次数:
372
这节课主要简单复习一下CNN从图中例子,1、3共享参数,2、4共享。要看明白以上参数。后面就是举例了。比如声音信号下面是zero padding下面是pooling还可以有mass pooling下面这种不常见,但也是有道理的综合 ...
分类:
其他好文 时间:
2017-05-30 15:54:38
阅读次数:
330
神经网络(Neural Network) 激活函数(Activation Functions) 卷积函数(Convolution) 池化函数(Pooling) 数据标准化(Normalization) 损失函数(Losses) 分类函数(Classification) 符号嵌入(Embeddings ...
分类:
其他好文 时间:
2017-05-25 23:26:11
阅读次数:
1183
Given a collection of intervals, merge all overlapping intervals. For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18]. 题目大意:给出一个区 ...
分类:
其他好文 时间:
2017-05-08 17:25:56
阅读次数:
117
题目描述】Givenanon-overlappingintervallistwhichissortedbystartpoint.Insertanewintervalintoit,makesurethelistisstillinorderandnon-overlapping(mergeintervalsifnecessary).给出一个无重叠的按照区间起始端点排序的区间列表。在列表中插入一个新的区间,你要确保列表中..
分类:
其他好文 时间:
2017-05-08 14:41:02
阅读次数:
112
【题目链接】click here~~ 【题目大意】: You are given string s. Your task is to determine if the given string s contains two non-overlapping substrings “AB” and “B ...
分类:
其他好文 时间:
2017-04-12 04:27:35
阅读次数:
164
Given a collection of intervals, merge all overlapping intervals. For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18]. 思路: 我们首先要做 ...
分类:
其他好文 时间:
2017-04-04 21:25:35
阅读次数:
158
Four rectangles are given. Find the smallest enclosing (new) rectangle into which these four may be fitted without overlapping. By smallest rectangle, ...
分类:
其他好文 时间:
2017-04-03 19:34:41
阅读次数:
158
本文先介绍两个13,14年的工作:Maxout Networks,Network In Network。网上有不少资料,但是很多作者我相信自己都没有完全理解,在本文中我会尽可能描述清楚。本文重点在于N...
分类:
Web程序 时间:
2017-03-11 23:56:34
阅读次数:
941
本文参考Yann LeCun的LeNet5经典架构,稍加ps得到下面适用于本手写识别的cnn结构,构造一个两层卷积神经网络,神经网络的结构如下图所示: 输入-卷积-pooling-卷积-pooling-全连接层-Dropout-Softmax输出 第一层卷积利用5*5的patch,32个卷积核,可以 ...
分类:
其他好文 时间:
2017-03-03 22:14:38
阅读次数:
1575