Skip to content

Instantly share code, notes, and snippets.

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