(train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.mnist.load_data()中的(train_images, train_labels)具体指的是什么?
时间: 2023-12-24 18:00:27 浏览: 254
tf.keras.datasets
(train_images, train_labels) 指的是 MNIST 数据集的训练数据,其中 train_images 是包含训练图像的 NumPy 数组,train_labels 是包含训练图像对应标签的 NumPy 数组。训练图像共有 60000 张,每张图像大小为 28x28 像素,标签为 0-9 的整数。
阅读全文