Multiple Choice
Consider the following code, which evaluates our convnet model using the MNIST test data: [38]: loss, accuracy = cnn.evaluate(X_test, y_test)
10000/10000 [==============================] - 4s 366us/step
[39]: loss
[39]: 0.026809450998473768
[40]: accuracy
[40]: 0.9917
Which of the following statements a) , b) or c) is false?
A) You can check the accuracy of a model on data the model has not yet seen. To do so, call the model's evaluate method, which displays as its output how long it took to process the test samples.
B) According to the output of the preceding snippet, our xe "convnet (convolutional neural network) "convnet model is 99.17% accurate when predicting the labels for unseen data.
C) With a little online research, you can find models that can predict MNIST with nearly 100% accuracy.
D) Each of the above statements is true.
Correct Answer:

Verified
Correct Answer:
Verified
Q54: Which of the following statements a), b)
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)
Q60: Which of the following statements is false?<br>A)
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