Skip to content

Instantly share code, notes, and snippets.

@SkalskiP
Created May 16, 2018 17:30
Show Gist options
  • Save SkalskiP/8da73ae28ee5d08c4c3f5689dddd6a08 to your computer and use it in GitHub Desktop.
Save SkalskiP/8da73ae28ee5d08c4c3f5689dddd6a08 to your computer and use it in GitHub Desktop.
parameters of the first layer in Keras Mnist model
model.add(Conv2D(
filters = 32,
kernel_size = (5,5),
padding = 'Same',
activation ='relu',
input_shape = (28,28,1)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment