Question: How many trainable parameters are there in this model? Please list the details of each layer. model = Sequential([ Conv2D(filters=32, kernel_size=(3, 3), activation='relu', padding 'same',
How many trainable parameters are there in this model? Please list the details of each layer.
model = Sequential([ Conv2D(filters=32, kernel_size=(3, 3), activation='relu', padding 'same', input_shape=(224,224,3)), MaxPool2D(pool_size=(2, 2), strides=2), Conv2D(filters=64, kernel_size=(3, 3), activation='relu', padding 'same'), MaxPool2D(pool_size=(2, 2), strides=2), Flatten(), Dense( units=2, activation='softmax') 1)
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
