Skip to content

Instantly share code, notes, and snippets.

@SmiffyKMc
Created June 17, 2022 14:31
Show Gist options
  • Save SmiffyKMc/2bd4f774027f648133f06f3d909490f8 to your computer and use it in GitHub Desktop.
Save SmiffyKMc/2bd4f774027f648133f06f3d909490f8 to your computer and use it in GitHub Desktop.
Using a convolutional base for the model
conv_base = keras.applications.vgg16.VGG16(
weights="imagenet",
include_top=False,
input_shape=(256, 256, 3)
)
conv_base.summary()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment