Keras

Keras Applications

Keras Applications

There is an application module in Keras that provides a pre-trained model for creating deep neural networks. The pre-trained models consist of two parts Architecture and model Weights. Some popular pre-trained models include:

  • VGG16
  • MobileNet
  • InceptionV3
  • ResNet
  • InceptionResNetV2

​​​​​​​You can easily load a model with the help of the following code:

import keras 
import numpy as np 

from keras.applications import vgg16, inception_v3, resnet50, mobilenet 
vgg_m = vgg16.VGG16(weights = 'imagenet') 

model_inception = inception_v3.InceptionV3(weights = 'imagenet') 
#Load the ResNet50 model 
model_resnet = resnet50.ResNet50(weights = 'imagenet')

After the model is successfully loaded, you can immediately use it to check the prediction. 

Top course recommendations for you

    Backtracking Algorithm
    1 hrs
    Beginner
    2.7K+ Learners
    4.55  (286)
    Become Full Stack Developer
    1 hrs
    Beginner
    65.8K+ Learners
    4.26  (1341)
    Bitcoin for Beginners
    1 hrs
    Beginner
    6.9K+ Learners
    4.53  (432)
    Pygame Basics
    1 hrs
    Beginner
    5.8K+ Learners
    4.36  (202)
    Inheritance in Java
    1 hrs
    Beginner
    4.6K+ Learners
    4.49  (278)
    Tic Tac Toe Python
    1 hrs
    Beginner
    2.7K+ Learners
    4.51  (81)
    Anaconda Python
    2 hrs
    Beginner
    3.8K+ Learners
    4.38  (304)
    Operators in MySQL
    2 hrs
    Beginner
    8.2K+ Learners
    4.5  (468)
    Advanced SQL
    1 hrs
    Intermediate
    28.9K+ Learners
    4.48  (2198)