Skip to content

Instantly share code, notes, and snippets.

@saurabhpal97
Created April 16, 2019 08:29
#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