Question: Question 1 0 6 p t s The following code was used to design a NN model to classify the CIFAR 1 0 dataset. We

Question 10
6pts
The following code was used to design a NN model to classify the CIFAR10 dataset. We used a 50% dropout in the fully connected layers. The summary of the model is shown in the image below. Fill in the blanks.
#defining the model
model_a=Sequential()
model_a.add(Conv2D(,(3,3), padding='same',
input_shape=x_train.shape[1:]))
model_a.add(Activation('relu'))
model_a.add(Conv2D( model_a.add(Activation('relu'))
model_a.add(MaxPooling2D(pool_size=(
model_a.add(Conv2Di (3,3), padding='same')) model_a.add(Activation('relu'))
model_a.add(Conv2D (3,3), padding='same'))
model_a.add(Activation('relu'))
model_a.add(MaxPooling2D(pool_size=1
))
model_a.add(Flatten())
model_a.add(Dense(units= activation='relu'))
model_a.add(Dropout( model_a.add(Dense(units=, activation =')) model_a.summary()
Question 1 0 6 p t s The following code was used

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!