I would like to access the layer size of all the layers in a Sequential
Keras model. My code:
model = Sequential()
model.add(Conv2D(filters=32,
kernel_size=(3,3),
input_shape=(64,64,3)
))
model.add(MaxPooling2D(pool_size=(3,3), strides=(2,2)))
Then I would like some code like the following to work
for layer in model.layers:
print(layer.get_shape())
.. but it doesn't. I get the error: AttributeError: 'Conv2D' object has no attribute 'get_shape'