- 博客(22)
- 收藏
- 关注
转载 交叉熵
很好的文章解释交叉熵https://blog.youkuaiyun.com/tsyccnh/article/details/79163834
2019-06-19 15:50:54
251
原创 RetinaNet--Focal Loss for Dense Object Detection
首页:https://blog.youkuaiyun.com/u014236392/article/details/86767950论文:Focal Loss for Dense Object Detectionofficial code - keras:https://github.com/fizyr/keras-retinanetunofficial code - pytorch:https://g...
2019-02-12 22:40:44
562
原创 FPN:Feature Pyramid Networks for Object Detection
论文:Feature Pyramid Networks for Object Detectionunofficial code - caffe:https://github.com/unsky/FPN1.识别不同大小的物体是计算机视觉中的一个基本挑战,我们知道,低层的特征语义信息比较少,但是目标位置准确;高层的特征语义信息比较丰富,但是目标位置比较粗略。所以,本文打算利用卷积网络的特征层级...
2019-02-12 11:37:23
411
转载 YOLO v2--YOLO9000: Better, Faster, Stronger
论文:YOLO9000: Better, Faster, Strongerofficial code - c:https://pjreddie.com/darknet/yolo/unofficial code - caffe:https://github.com/quhezheng/caffe_yolo_v2unofficial code - tensorflow:https://githu...
2019-02-12 10:18:16
1203
5
原创 R-FCN: Object Detection via Region-based Fully Convolutional Networks
论文:R-FCN: Object Detection via Region-based Fully Convolutional Networksofficial code - caffe:https://github.com/daijifeng001/R-FCNunofficial code - caffe:https://github.com/YuwenXiong/py-R-FCN1.提...
2019-02-11 10:54:30
341
原创 SSD: Single Shot MultiBox Detector
论文:SSD: Single Shot MultiBox Detectorofficial code - caffe:https://github.com/weiliu89/caffe/tree/ssdunofficial code - tensorflow:https://github.com/balancap/SSD-Tensorflowunofficial code - pytorch...
2019-02-09 12:04:15
350
原创 YOLO v1--You Only Look Once: Unified, Real-Time Object Detection
论文:You Only Look Once: Unified, Real-Time Object Detectionofficial code - c:https://pjreddie.com/darknet/yolo/1.YOLO 之前的物体检测方法主要是通过 region proposal 产生大量的可能包含待检测物体的 potential bounding box,再用分类器去判断每个...
2019-02-08 20:34:43
362
原创 OHEM:Training Region-based Object Detectors with Online Hard Example Mining
论文:Training Region-based Object Detectors with Online Hard Example Miningofficial code - caffe:https://github.com/abhi2610/ohem1. hard example顾名思义,难例,即检测困难的正样本,与 easy example相对,一般指训练过程中误分的样本。2. 核心...
2019-02-07 17:53:05
556
原创 Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks
论文:Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networksofficial code - caffe:https://github.com/rbgirshick/py-faster-rcnnunofficial code - tensorflow:https://github.com/end...
2019-02-07 16:01:51
337
原创 Fast R-CNN
论文:Fast R-CNNofficial code - caffe:https://github.com/rbgirshick/fast-rcnn检测要求的精确定位目标导致复杂性产生,其中两个主要挑战是:(1)必须处理大量候选目标区域(proposals);(2)这些候选框只提供了粗略定位,必须进行精修来精准定位。而解决这些问题的办法往往牺牲了速度、准确率或者简易性。1.1 R-CN...
2019-02-07 13:57:15
255
原创 OverFeat: Integrated Recognition, Localization and Detection using Convolutional Networks
论文:OverFeat: Integrated Recognition, Localization and Detection using Convolutional Networksofficial code - torch:https://github.com/sermanet/OverFeat本文展示了一种整合了分类、定位和检测的神经网络框架。在 ConvNet 下利用 multisc...
2019-02-06 22:14:57
280
原创 R-CNN: Regions with CNN features
论文:Rich feature hierarchies for accurate object detection and semantic segmentationofficial code - caffe: https://github.com/rbgirshick/rcnn结合了两个关键技术(1)可以在自下而上的 region proposal 上应用大型卷积神经网络(CNNs)来定...
2019-02-06 15:43:31
933
原创 目标检测系列论文阅读
该图链接:https://github.com/hoya012/deep_learning_object_detection#2014打算从一篇总结(Deep Learning for Generic Object Detection: A Survey)开始,然后顺着上图依次理顺一下。Deep Learning for Generic Object Detection: A Survey...
2019-02-06 12:58:14
2094
原创 编译caffe时遇到的错误
长期更新。。。普通的好找的就没有记录了。1、问题:/usr/bin/ld: warning: libopencv_core.so.3.1, needed by //usr/local/lib/libopencv_imgcodecs.so, may conflict with libopencv_core.so.2.4/usr/bin/ld: /tmp/ccJnrotv.o: u...
2019-01-15 22:42:56
936
原创 目标检测论文(尤其针对一些小目标的可能改进方法)
------------------------------------------------------------------------About Face detection------------------------------------------------------------------------1、Finding Tiny Faces Code:htt...
2018-11-12 16:17:21
10343
1
原创 Ubuntu(双系统) 安装流程简要
Winsows 下安装 Ubuntu 简要流程及注意事项:一、安装 Windows 和 Ubuntu 双系统时,一般要先给 Ubuntu 分好一个区进行安装:1、在磁盘管理器里选好要压缩的盘,右键选择压缩卷输入要给 Ubuntu 的空间(我给了200G);2、完成后 Windows 下看到的是未分配,不要新建简单卷,如果不小心新建了,删除就好。(注意最后安装成功之后 Windows 下...
2018-10-24 15:59:12
419
原创 detectron训练流程
简要记录一下detectron的训练流程及主要函数执行过程。以 faster-rcnn + FPN 为例。参考这篇train_net.py----main()一、一些必要的参数数据预处理 (1) logger = setup_logging(__name__) (2) logging.getLogger('detectron.roi_data.loader').setLevel(l...
2018-10-02 21:45:34
2272
原创 (Pycharm)OSError: libcurand.so.8.0: cannot open shared object file: No such file or directory
在试图用 Pycharm 调试查看 detectron 的代码时,出现了如题的错误,最后解决方案如下:在终端执行以下命令,将相应的库文件复制到 /usr/lib$ sudo cp /usr/local/cuda-8.0/lib64/libcudart.so.8.0 /usr/local/lib/libcudart.so.8.0 && sudo ldconfig$ sud...
2018-09-30 20:28:25
4288
2
原创 ubuntu16.04 caffe2(pytorch)安装
#-------------------------ZR----------------------------## 利用annaconda安装caffe2#########!未经同意,不得转载!########前面写的安装好 Detectron 后,本来一切正常,但是当我想要再次运行 py-faster-rcnn 之后,却意外的报错了。纳闷儿,完全没动过...
2018-07-28 09:59:18
2467
原创 Detectron训练自己的数据集(VOC格式)细节
#-----------------------ZR----------------------------# VOC格式转json格式训练#-----------!未经同意,不得转载!------------Detectron平台是基于COCO数据集训练的,而我一开始接触的faster-rcnn都是VOC2007数据集格式的,最近想要试试利用Detectro...
2018-07-20 13:09:36
3672
8
原创 ubuntu16.04下Detectron+caffe2(Pytorch)安装配置过程
#-------------------------ZR----------------------------## detectron配置############!未经同意,不得转载!##############一、caffe2(Pytorch)(如果有anaconda或者此处源码编译不成功时,可以参考这篇) detectron是基于caffe2的,所以要先配...
2018-07-19 16:28:00
5082
8
原创 py-faster-rcnn配置过程
#------------------ZR--------------------##--------!未经同意,不得转载!-------1、安装caffe 参照https://blog.youkuaiyun.com/yhaolpz/article/details/71375762 (pycaffe notebook接口不用配)2、下载py-faster-rcnn #...
2018-06-29 09:33:34
467
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅