Skip to content

Instantly share code, notes, and snippets.

@saurabhpal97
Created April 16, 2019 08:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saurabhpal97/20baa3feab2a86055e591ee9654ad31f to your computer and use it in GitHub Desktop.
Save saurabhpal97/20baa3feab2a86055e591ee9654ad31f to your computer and use it in GitHub Desktop.
#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