W3Cschool
恭喜您成為首批注冊用戶
獲得88經驗值獎勵
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é)中檢查每個預訓練模型。
Copyright©2021 w3cschool編程獅|閩ICP備15016281號-3|閩公網安備35020302033924號
違法和不良信息舉報電話:173-0602-2364|舉報郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號
聯(lián)系方式:
更多建議: