Multiple Choice
Which of the following statements is false?
A) Keras xe "convnet (convolutional neural network) "convnets require NumPy array inputs in which each sample has the shape: (width, height, channels)
B) For MNIST, each image's width and height are 28 pixels, and each pixel has one channel (the grayscale shade of the pixel from 0 to 255) , so each sample's shape will be: (28, 28, 1)
C) Full-color images with RGB (red/green/blue) values for each pixel, would have three channels-one channel each for the red, green and blue components of a color.
D) As the neural network learns from the images, it reduces the number of channels.
Correct Answer:

Verified
Correct Answer:
Verified
Q55: Chollet discusses the types of tensors
Q56: Which of the following are popular deep
Q57: Which of the following statements a), b)
Q58: Which of the following statements is false?<br>A)
Q59: Consider the following code, which evaluates our
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