Back to Mmdetection

FCOS

configs/fcos/README.md

3.3.07.5 KB
Original Source

FCOS

FCOS: Fully Convolutional One-Stage Object Detection

<!-- [ALGORITHM] -->

Abstract

We propose a fully convolutional one-stage object detector (FCOS) to solve object detection in a per-pixel prediction fashion, analogue to semantic segmentation. Almost all state-of-the-art object detectors such as RetinaNet, SSD, YOLOv3, and Faster R-CNN rely on pre-defined anchor boxes. In contrast, our proposed detector FCOS is anchor box free, as well as proposal free. By eliminating the predefined set of anchor boxes, FCOS completely avoids the complicated computation related to anchor boxes such as calculating overlapping during training. More importantly, we also avoid all hyper-parameters related to anchor boxes, which are often very sensitive to the final detection performance. With the only post-processing non-maximum suppression (NMS), FCOS with ResNeXt-64x4d-101 achieves 44.7% in AP with single-model and single-scale testing, surpassing previous one-stage detectors with the advantage of being much simpler. For the first time, we demonstrate a much simpler and flexible detection framework achieving improved detection accuracy. We hope that the proposed FCOS framework can serve as a simple and strong alternative for many other instance-level tasks.

<div align=center> </div>

Results and Models

BackboneStyleGNMS trainTricksDCNLr schdMem (GB)Inf time (fps)box APConfigDownload
R-50caffeYNNN1x3.622.736.6configmodel | log
R-50caffeYNYN1x3.7-38.7configmodel | log
R-50caffeYNYY1x3.8-42.3configmodel | log
R-101caffeYNNN1x5.517.339.1configmodel | log
BackboneStyleGNMS trainLr schdMem (GB)Inf time (fps)box APConfigDownload
R-50caffeYY2x2.622.938.5configmodel | log
R-101caffeYY2x5.517.340.8configmodel | log
X-101pytorchYY2x10.09.742.6configmodel | log

Notes:

  • The X-101 backbone is X-101-64x4d.
  • Tricks means setting norm_on_bbox, centerness_on_reg, center_sampling as True.
  • DCN means using DCNv2 in both backbone and head.

Citation

latex
@article{tian2019fcos,
  title={FCOS: Fully Convolutional One-Stage Object Detection},
  author={Tian, Zhi and Shen, Chunhua and Chen, Hao and He, Tong},
  journal={arXiv preprint arXiv:1904.01355},
  year={2019}
}