Back to Mmdetection

RPN

configs/rpn/README.md

3.3.06.6 KB
Original Source

RPN

Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks

<!-- [ALGORITHM] -->

Abstract

State-of-the-art object detection networks depend on region proposal algorithms to hypothesize object locations. Advances like SPPnet and Fast R-CNN have reduced the running time of these detection networks, exposing region proposal computation as a bottleneck. In this work, we introduce a Region Proposal Network (RPN) that shares full-image convolutional features with the detection network, thus enabling nearly cost-free region proposals. An RPN is a fully convolutional network that simultaneously predicts object bounds and objectness scores at each position. The RPN is trained end-to-end to generate high-quality region proposals, which are used by Fast R-CNN for detection. We further merge RPN and Fast R-CNN into a single network by sharing their convolutional features---using the recently popular terminology of neural networks with 'attention' mechanisms, the RPN component tells the unified network where to look. For the very deep VGG-16 model, our detection system has a frame rate of 5fps (including all steps) on a GPU, while achieving state-of-the-art object detection accuracy on PASCAL VOC 2007, 2012, and MS COCO datasets with only 300 proposals per image. In ILSVRC and COCO 2015 competitions, Faster R-CNN and RPN are the foundations of the 1st-place winning entries in several tracks.

<div align=center> </div>

Results and Models

BackboneStyleLr schdMem (GB)Inf time (fps)AR1000ConfigDownload
R-50-FPNcaffe1x3.522.658.7configmodel | log
R-50-FPNpytorch1x3.822.358.2configmodel | log
R-50-FPNpytorch2x--58.6configmodel | log
R-101-FPNcaffe1x5.417.360.0configmodel | log
R-101-FPNpytorch1x5.816.559.7configmodel | log
R-101-FPNpytorch2x--60.2configmodel | log
X-101-32x4d-FPNpytorch1x7.013.060.6configmodel | log
X-101-32x4d-FPNpytorch2x--61.1configmodel | log
X-101-64x4d-FPNpytorch1x10.19.161.0configmodel | log
X-101-64x4d-FPNpytorch2x--61.5configmodel | log

Citation

latex
@inproceedings{ren2015faster,
  title={Faster r-cnn: Towards real-time object detection with region proposal networks},
  author={Ren, Shaoqing and He, Kaiming and Girshick, Ross and Sun, Jian},
  booktitle={Advances in neural information processing systems},
  year={2015}
}