Created
July 15, 2022 00:27
-
-
Save ayyucedemirbas/b7f3797d87dda5ef955eaa94f6bc6ca1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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