Multiple Choice
Which of the following statements is false?
A) Convnets often have many convolution and pooling layers.
B) The Keras team's convnets tend to double the number of filters in subsequent convolutional layers to enable the model to learn more relationships between the features.
C) The following snippets add a convolution layer with 128 filters, followed by a pooling layer to reduce the dimensionality by 50%:
Cnn) add(Conv2D(filters=128, kernel_size=(3, 3) ,
Activation='relu') )
Cnn) add(MaxPooling2D(pool_size=(2, 2) ) )
D) For odd dimensions like 11-by-11, Keras pooling layers round the dimensions down by default.
Correct Answer:

Verified
Correct Answer:
Verified
Q61: In supervised deep learning, we aim to
Q62: The IPython magic _ indicates that Matplotlib-based
Q63: Which of the following deep-learning demos translates
Q64: A Keras model's _ method returns the
Q65: You train a Keras model by calling
Q67: Which of the following statements a), b)
Q68: Which of the following statements about a
Q69: Which of the following statements a), b)
Q70: Which of the following statements is false?<br>A)
Q71: Which of the following Keras datasets for