Keras 應用

2021-10-15 15:11 更新

Keras 應用模塊用于為深度神經網絡提供預訓練模型。Keras 模型用于預測、特征提取和微調。本章詳細介紹了 Keras 應用程序。

預訓練模型

訓練好的模型由模型架構和模型權重兩部分組成。模型權重是大文件,因此我們必須從 ImageNet 數(shù)據(jù)庫下載并提取特征。下面列出了一些流行的預訓練模型:

  • ResNet
  • VGG16
  • MobileNet
  • InceptionResNetV2
  • InceptionResNetV3

加載模型

Keras 預訓練模型可以輕松加載,如下所示:

import keras
import numpy as np


from keras.applications import vgg16, inception_v3, resnet50, mobilenet


#Load the VGG model
vgg_model = vgg16.VGG16(weights = 'imagenet')


#Load the Inception_V3 model
inception_model = inception_v3.InceptionV3(weights = 'imagenet')


#Load the ResNet50 model
resnet_model = resnet50.ResNet50(weights = 'imagenet')


#Load the MobileNet model mobilenet_model = mobilenet.MobileNet(weights = 'imagenet')

加載模型后,我們可以立即將其用于預測目的。讓我們在接下來的章節(jié)中檢查每個預訓練模型。

以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號