Created
April 16, 2019 08:29
-
-
Save saurabhpal97/20baa3feab2a86055e591ee9654ad31f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#importing required modules | |
from keras.applications import VGG16 | |
#loading the saved model | |
#we are using the complete architecture thus include_top=True | |
model = VGG16(weights='imagenet',include_top=True) | |
#show the summary of model | |
model.summary() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment