Skip to content

Instantly share code, notes, and snippets.

@Gabe-flomo
Created September 28, 2020 20:17
Embed
What would you like to do?
# load model
model = VGG16()
# remove the output layer
model = Model(inputs=model.inputs, outputs=model.layers[-2].output)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment