上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页
摘要: Dense prediction fully convolutional network for sementic segmentation 先用feature extractor 提特征,然后再使用加入upsample层,得到dense prediction。 这里的‘deconvolution’ 阅读全文
posted @ 2017-07-27 01:17 hahahaf 阅读(2932) 评论(0) 推荐(0) 编辑
摘要: 找最短的到叶节点的长度: 一考虑广度优先搜索(使用队列,不用 recursive) 使用递归形式 阅读全文
posted @ 2017-07-26 16:42 hahahaf 阅读(112) 评论(0) 推荐(0) 编辑
摘要: RCNN: 直接使用object proposal 方法得到image crops 送入神经网络中,但是crops 的大小不一样,因此使用 ROI Pooling,这个网络层可以把不同大小的输入映射到一个固定尺度的特征向量,这个ROI pooling 类似普通的pooling, 但是图像大小不固定。 阅读全文
posted @ 2017-07-26 00:49 hahahaf 阅读(1072) 评论(0) 推荐(0) 编辑
摘要: 1. 求深度: recursive 遍历左右子树,递归跳出时每次加一。 2. 广度搜索 使用队列 3. 二叉查找树 由于二叉查找树是递归定义的,插入结点的过程是:若原二叉查找树为空,则直接插入;否则,若关键字 k 小于根结点关键字,则插入到左子树中,若关键字 k 大于根结点关键字,则插入到右子树中。 阅读全文
posted @ 2017-07-25 18:16 hahahaf 阅读(130) 评论(0) 推荐(0) 编辑
摘要: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word 阅读全文
posted @ 2017-07-22 18:17 hahahaf 阅读(171) 评论(0) 推荐(0) 编辑
摘要: Find the contiguous subarray within an array (containing at least one number) which has the largest sum. For example, given the array [-2,1,-3,4,-1,2, 阅读全文
posted @ 2017-07-22 17:26 hahahaf 阅读(205) 评论(0) 推荐(0) 编辑
摘要: I mplement strStr(). Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack. 找字符串出现的第一位置 the first s 阅读全文
posted @ 2017-07-21 17:55 hahahaf 阅读(251) 评论(0) 推荐(0) 编辑
摘要: r egion based RNN Fast RCNN Faster RCNN F-RCN RNN RNN Fast RCNN Fast RCNN Faster RCNN Faster RCNN F-RCN F-RCN Faster RCNN Faster RCNN Faster RCNN the 阅读全文
posted @ 2017-07-21 00:42 hahahaf 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 1、降维( dimension reductionality )。1*1 的卷积核是对每个像素点,在不同的channels 进行线性组合(信息组合),调控depth。比如,一张500 * 500且厚度depth为100 的图片在20个filter上做1*1的卷积,那么结果的大小为500*500*20 阅读全文
posted @ 2017-07-20 20:32 hahahaf 阅读(655) 评论(0) 推荐(0) 编辑
摘要: this is a easy question the intuition of our method: we should record the max prefix from the first string to the last one. class Solution { public: s 阅读全文
posted @ 2017-07-19 17:05 hahahaf 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 15 16 下一页