
深度学习
文章平均质量分 65
zhoujunr1
这个作者很懒,什么都没留下…
展开
-
RCNN 论文 笔记
Rich feature hierarchies for accurate object detection and semantic segmentationRCNN 物体检测模型结构整体模型包含三个自模型: * first generates category-independent region proposals, these proposals define the set...原创 2018-04-22 21:57:21 · 347 阅读 · 0 评论 -
Fast R-CNN 论文 笔记 及 源码解读
Fast R-CNN与RCNN SPPnet对比RCNN首先finetune,使用log loss。然后,使用SVMs来训练,最后,使用bounding-box regressor。代价大慢Fast R-CNN 模型结构和训练一张图片首先经过几个卷积层和池化层产生特征向量,然后 for each object proposal a region of inter...原创 2018-04-22 23:24:07 · 427 阅读 · 0 评论 -
spp 论文笔记
Spatial Pyramid Pooling in Deep Convolutional Networks for Visual Recognitioncrop & warpSpatial pyramid poolingIn this paper, we introduce a spatial pyramid pooling layer to remove the f...原创 2018-04-23 23:05:32 · 308 阅读 · 0 评论 -
Faster R-CNN
Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks使用卷积层计算proposals On top of these convolutional features, we construct an RPN by adding a few additional convolutional l...原创 2018-04-24 01:08:41 · 250 阅读 · 0 评论 -
caffe train 源码
caffe train 源码int train() { // 查看是否提供了solver CHECK_GT(FLAGS_solver.size(), 0) << "Need a solver definition to train."; CHECK(!FLAGS_snapshot.size() || !FLAGS_weights.size()) <...原创 2018-04-28 23:34:00 · 706 阅读 · 0 评论