Solved

Which of the Following Statements Is False

Question 44

Multiple Choice

Which of the following statements is false?


A) The following code imports the tensorflow.keras.datasets.mnist module containing the function that loads the MNIST dataset:
From tensorflow.keras.datasets import mnist
B) In the version of Keras built into TensorFlow, the Keras module names begin with "tensorflow.".
C) TensorFlow uses Keras to execute the deep-learning models.
D) The mnist module's load_data function loads the MNIST training and testing sets:
(X_train, y_train) , (X_test, y_test) = mnist.load_data()
When you call load_data it will download the MNIST data to your system. The function returns a tuple of two elements containing the training and testing sets. Each element is itself a tuple containing the samples and labels, respectively.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions