Skip to content

Instantly share code, notes, and snippets.

@Sachin-crypto
Created December 16, 2022 12:24
Embed
What would you like to do?
# Removing last 6 layers and adding our output layer
x = mobile.layers[-6].output
output = Dense(units=10, activation='softmax')(x)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment