EfficientDet: Scalable and Efficient Object Detection
Mingxing Tan, Ruoming Pang, Quoc V. Le
TL;DR
EfficientDet tackles the challenge of high-accuracy object detection under diverse resource limits by introducing BiFPN for efficient multiscale feature fusion and a compound scaling method that jointly scales backbone, feature network, heads, and input resolution. By pairing EfficientNet backbones with BiFPN and shared prediction heads, the authors construct a family of detectors that achieve state-of-the-art COCO AP with far fewer parameters and FLOPs. An extensive ablation study confirms the value of bidirectional cross-scale connections, weighted (and fast normalized) fusion, and the compound scaling strategy. Practically, EfficientDet delivers substantial speedups and efficiency gains across CPU and GPU hardware while maintaining high accuracy, enabling deployment in mobile and edge settings as well as datacenters.
Abstract
Model efficiency has become increasingly important in computer vision. In this paper, we systematically study neural network architecture design choices for object detection and propose several key optimizations to improve efficiency. First, we propose a weighted bi-directional feature pyramid network (BiFPN), which allows easy and fast multiscale feature fusion; Second, we propose a compound scaling method that uniformly scales the resolution, depth, and width for all backbone, feature network, and box/class prediction networks at the same time. Based on these optimizations and better backbones, we have developed a new family of object detectors, called EfficientDet, which consistently achieve much better efficiency than prior art across a wide spectrum of resource constraints. In particular, with single model and single-scale, our EfficientDet-D7 achieves state-of-the-art 55.1 AP on COCO test-dev with 77M parameters and 410B FLOPs, being 4x - 9x smaller and using 13x - 42x fewer FLOPs than previous detectors. Code is available at https://github.com/google/automl/tree/master/efficientdet.
