Tony607 / efficientnet_keras_transfer_learning

Transfer Learning with EfficientNet in Keras
88 stars 77 forks source link
efficientnet keras transfer-learning

EfficientNet-Keras

This repository contains Keras reimplementation of EfficientNet, the new convolutional neural network architecture from EfficientNet (TensorFlow implementation).

Table of content

  1. About EfficientNets
  2. Examples
  3. Models
  4. Installation

About EfficientNet Models

If you're new to EfficientNets, here is an explanation straight from the official TensorFlow implementation:

EfficientNets are a family of image classification models, which achieve state-of-the-art accuracy, yet being an order-of-magnitude smaller and faster than previous models. EfficientNets are based on AutoML and Compound Scaling. In particular, AutoML Mobile framework have been used to develop a mobile-size baseline network, named as EfficientNet-B0; Then, the compound scaling method is used to scale up this baseline to obtain EfficientNet-B1 to B7.

EfficientNets achieve state-of-the-art accuracy on ImageNet with an order of magnitude better efficiency:

Examples

from efficientnet import EfficientNetB0

model = EfficientNetB0(weights='imagenet')
from efficientnet import load_model

model = load_model('path/to/model.h5')

Models

Available architectures and pretrained weights (converted from original repo):

Architecture @top1* @top5* Weights
EfficientNetB0 0.7668 0.9312 +
EfficientNetB1 0.7863 0.9418 +
EfficientNetB2 0.7968 0.9475 +
EfficientNetB3 0.8083 0.9531 +
EfficientNetB4 - - -
EfficientNetB5 - - -
EfficientNetB6 - - -
EfficientNetB7 - - -

"*" - topK accuracy score for converted models (imagenet val set)

Weights for B4-B7 are not released yet (issue).

Installation

Requirements:

Source:

$ pip install -U git+https://github.com/qubvel/efficientnet

PyPI:

$ pip install -U efficientnet