H13-311_V3.5 · Question #72
tf.keras.datasets Can view keras The built-in data set.
The correct answer is A. TRUE. Option A is correct because tf.keras.datasets is a submodule within TensorFlow's Keras API that provides direct access to several built-in datasets, including MNIST, CIFAR-10, CIFAR-100, IMDB, Fashion-MNIST, and Boston Housing, among others. These datasets can be loaded with a…
Question
tf.keras.datasets Can view keras The built-in data set.
Options
- ATRUE
- BFALSE
How the community answered
(46 responses)- A70% (32)
- B30% (14)
Explanation
Option A is correct because tf.keras.datasets is a submodule within TensorFlow's Keras API that provides direct access to several built-in datasets, including MNIST, CIFAR-10, CIFAR-100, IMDB, Fashion-MNIST, and Boston Housing, among others. These datasets can be loaded with a simple call such as tf.keras.datasets.mnist.load_data(), which downloads and returns the data as NumPy arrays ready for training. Option B is incorrect because it falsely implies this functionality does not exist, when in fact tf.keras.datasets is a well-documented and widely used feature of the Keras API. For the exam, remember that tf.keras.datasets acts as a convenient dataset library bundled directly into Keras, so you never need a separate library to access these common benchmark datasets.
Topics
Community Discussion
No community discussion yet for this question.