EfficientNet | |
Developer: | Google AI |
Released: | May 2019 |
Programming Language: | Python |
License: | Apache License 2.0 |
Website: | Google AI Blog |
EfficientNet is a family of convolutional neural networks (CNNs) for computer vision published by researchers at Google AI in 2019. Its key innovation is compound scaling, which uniformly scales all dimensions of depth, width, and resolution using a single parameter.
EfficientNet models have been adopted in various computer vision tasks, including image classification, object detection, and segmentation.
EfficientNet introduces compound scaling, which, instead of scaling one dimension of the network at a time, such as depth (number of layers), width (number of channels), or resolution (input image size), uses a compound coefficient
\phi
\alpha ⋅ \beta2 ⋅ \gamma2 ≈ 2
\alpha\ge1,\beta\ge1,\gamma\ge1
\alpha ⋅ \beta2 ⋅ \gamma2 ≈ 2
\phi
\phi0
\phi0 | |
2 |
\alpha
\beta
\gamma
Architecturally, they optimized the choice of modules by neural architecture search (NAS), and found that the inverted bottleneck convolution (which they called MBConv) used in MobileNet worked well.
The EfficientNet family is a stack of MBConv layers, with shapes determined by the compound scaling. The original publication consisted of 8 models, from EfficientNet-B0 to EfficientNet-B7, with increasing model size and accuracy. EfficientNet-B0 is the baseline network, and subsequent models are obtained by scaling the baseline network by increasing
\phi
EfficientNet has been adapted for fast inference on edge TPUs[1] and centralized TPU or GPU clusters by NAS.
EfficientNet V2 was published in June 2021. The architecture was improved by further NAS search with more types of convolutional layers. It also introduced a training method, which progressively increases image size during training, and uses regularization techniques like dropout, RandAugment,[2] and Mixup. The authors claim this approach mitigates accuracy drops often associated with progressive resizing.