Skip to content

Instantly share code, notes, and snippets.

@ayyucedemirbas
Created July 15, 2022 00:27
Show Gist options
  • Save ayyucedemirbas/b7f3797d87dda5ef955eaa94f6bc6ca1 to your computer and use it in GitHub Desktop.
Save ayyucedemirbas/b7f3797d87dda5ef955eaa94f6bc6ca1 to your computer and use it in GitHub Desktop.
model = Sequential([
Conv2D(64, (3,3), activation='relu', input_shape=input_shape),
MaxPooling2D((2,2)),
Conv2D(32, (3,3), activation='relu'),
MaxPooling2D((2,2)),
Flatten(),
Dense(16, activation='relu'),
Dense(10, activation='softmax')
])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment