Skip to content

Instantly share code, notes, and snippets.

@sandgate-dev
Created February 9, 2019 13:04
Show Gist options
  • Save sandgate-dev/2960515a509218482bbbff1a45add65c to your computer and use it in GitHub Desktop.
Save sandgate-dev/2960515a509218482bbbff1a45add65c to your computer and use it in GitHub Desktop.
model = Sequential([
vgg_model,
Flatten(),
Dense(32, activation='relu'),
Dense(64, activation='relu'),
Dense(128, activation='relu'),
Dense(64, activation='relu'),
Dense(5, activation='softmax')
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment