Given an array of integers, find two non-overlapping subarrays which have the largest sum. The number in each subarray should be contiguous. Return th ...
分类:
其他好文 时间:
2016-04-02 12:07:58
阅读次数:
174
Given an array of integers, find two non-overlapping subarrays which have the largest sum.The number in each subarray should be contiguous.Return the ...
分类:
其他好文 时间:
2016-03-30 14:34:53
阅读次数:
173
1. Merge 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]. /
分类:
其他好文 时间:
2016-03-11 18:52:46
阅读次数:
155
在caffe中,网络的结构由prototxt文件中给出,由一些列的Layer(层)组成,常用的层如:数据加载层、卷积操作层、pooling层、非线性变换层、内积运算层、归一化层、损失计算层等;本篇主要介绍loss层 1. loss层总述 下面首先给出全loss层的结构设置的一个小例子(定义在.pro
分类:
其他好文 时间:
2016-03-11 01:14:21
阅读次数:
504
在caffe中,网络的结构由prototxt文件中给出,由一些列的Layer(层)组成,常用的层如:数据加载层、卷积操作层、pooling层、非线性变换层、内积运算层、归一化层、损失计算层等;本篇主要介绍pooling层 1. Pooling层总述 下面首先给出卷积层的结构设置的一个小例子(定义在.
分类:
其他好文 时间:
2016-03-04 01:51:13
阅读次数:
201
在caffe中,网络的结构由prototxt文件中给出,由一些列的Layer(层)组成,常用的层如:数据加载层、卷积操作层、pooling层、非线性变换层、内积运算层、归一化层、损失计算层等;本篇主要介绍卷积层 1. 卷积层总述 下面首先给出卷积层的结构设置的一个小例子(定义在.prototxt文件
分类:
其他好文 时间:
2016-03-04 01:49:31
阅读次数:
759
1.为什么要在卷积网络中加入pooling(池化) 如果只利用卷积操作来减少feature map的大小,会失去很多信息。所以想到一种方法,减小卷积时的stride,留下大部分信息,通过池化来减小feature map的大小。 池化的优点: 1.池化操作不会增加parameters 2.实验结果表明
分类:
其他好文 时间:
2016-03-03 14:27:41
阅读次数:
127
Table of Contents: Architecture Overview ConvNet Layers Convolutional Layer Pooling Layer Normalization Layer Fully-Connected Layer Converting Fully-C
分类:
Web程序 时间:
2016-03-01 20:50:12
阅读次数:
630
Notification是智能手机应用编程中非常常用的一种传递信息的机制,而且可以非常好的节省资源,不用消耗资源来不停地检查信息状态(Pooling),在iOS下应用分为两种不同的Notification种类,本地和远程。本地的Notification由iOS下NotificationManager统一管理,只需要将封装好的本地Notification对象加入到系统Notification管理机制队列中,系统会在指定的时间激发将本地Notification,应用只需设计好处理Notification的方法就...
分类:
移动开发 时间:
2016-02-28 18:38:59
阅读次数:
272
Given a non-overlapping interval list which is sorted by start point. Insert a new interval into it, make sure the list is still in order and non-over
分类:
其他好文 时间:
2016-02-25 15:09:58
阅读次数:
101