(Tensorflow) EfficientNet Lite
Last updated
Last updated
EfficientNet is a convolutional neural network architecture and scaling method that uniformly scales all dimensions of depth/width/resolution using a compound coefficient. Unlike conventional practice that arbitrary scales these factors, the EfficientNet scaling method uniformly scales network width, depth, and resolution with a set of fixed scaling coefficients. For example, if we want to use $2^N$ times more computational resources, then we can simply increase the network depth by $\alpha ^ N$, width by $\beta ^ N$, and image size by $\gamma ^ N$, where $\alpha, \beta, \gamma$ are constant coefficients determined by a small grid search on the original small model. EfficientNet uses a compound coefficient $\phi$ to uniformly scales network width, depth, and resolution in a principled way.
The compound scaling method is justified by the intuition that if the input image is bigger, then the network needs more layers to increase the receptive field and more channels to capture more fine-grained patterns on the bigger image.
The base EfficientNet-B0 network is based on the inverted bottleneck residual blocks of .
EfficientNet-Lite makes EfficientNet more suitable for mobile devices by introducing activation functions and removing .
The weights from this model were ported from .
To load a pretrained model:
Copied
To load and preprocess the image:
Copied
To get the model predictions:
Copied
To get the top-5 predictions class names:
Copied
Replace the model name with the variant you want to use, e.g. tf_efficientnet_lite0
. You can find the IDs in the model summaries at the top of this page.
You can finetune any of the pre-trained models just by changing the classifier (the last layer).
Copied
Copied
To extract image features with this model, follow the , just change the name of the model you want to use.
To finetune on your own dataset, you have to write a training loop or adapt to use your dataset.
You can follow the for training a new model afresh.