Skip to content

Instantly share code, notes, and snippets.

@iavinas
Created May 24, 2020 11:00
Show Gist options
  • Save iavinas/8621e32d210cf2b40c9107fbbdeeff1f to your computer and use it in GitHub Desktop.
Save iavinas/8621e32d210cf2b40c9107fbbdeeff1f to your computer and use it in GitHub Desktop.
VGG16_model = Sequential()
VGG16_model.add(GlobalAveragePooling2D(input_shape=train_VGG16.shape[1:]))
VGG16_model.add(Dense(133, activation='softmax'))
VGG16_model.summary()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment