加载 Fashion-MNIST 数据集。
用法
tf.keras.datasets.fashion_mnist.load_data()
返回
-
NumPy 数组元组:
(x_train, y_train), (x_test, y_test)
。
这是一个包含 10 个时尚类别的 60,000 个 28x28 灰度图像的数据集,以及一个包含 10,000 个图像的测试集。该数据集可用作 MNIST 的 drop-in 替代品。
这些课程是:
标签 | 说明 |
---|---|
0 | T-shirt/顶部 |
1 | Trouser |
2 | Pullover |
3 | Dress |
4 | Coat |
5 | Sandal |
6 | Shirt |
7 | Sneaker |
8 | Bag |
9 | 踝靴 |
x_train:uint8 具有形状的灰度图像数据的 NumPy 数组(60000, 28, 28)
,包含训练数据。
y_train:uint8 NumPy 形状的标签数组(0-9 范围内的整数)(60000,)
对于训练数据。
x_test:uint8 NumPy 灰度图像数据数组,形状为 (10000, 28, 28),包含测试数据。
y_test:uint8 NumPy 形状的标签数组(0-9 范围内的整数)(10000,)
为测试数据。
例子:
(x_train, y_train), (x_test, y_test) = fashion_mnist.load_data()
assert x_train.shape == (60000, 28, 28)
assert x_test.shape == (10000, 28, 28)
assert y_train.shape == (60000,)
assert y_test.shape == (10000,)
执照:
Fashion-MNIST 的版权归 Zalando SE 所有。 Fashion-MNIST 在 MIT 许可下获得许可。
相关用法
- Python tf.keras.datasets.cifar10.load_data用法及代码示例
- Python tf.keras.datasets.mnist.load_data用法及代码示例
- Python tf.keras.datasets.imdb.get_word_index用法及代码示例
- Python tf.keras.datasets.cifar100.load_data用法及代码示例
- Python tf.keras.applications.inception_resnet_v2.preprocess_input用法及代码示例
- Python tf.keras.metrics.Mean.merge_state用法及代码示例
- Python tf.keras.layers.InputLayer用法及代码示例
- Python tf.keras.callbacks.ReduceLROnPlateau用法及代码示例
- Python tf.keras.layers.serialize用法及代码示例
- Python tf.keras.metrics.Hinge用法及代码示例
- Python tf.keras.experimental.WideDeepModel.compute_loss用法及代码示例
- Python tf.keras.metrics.SparseCategoricalAccuracy.merge_state用法及代码示例
- Python tf.keras.metrics.RootMeanSquaredError用法及代码示例
- Python tf.keras.applications.resnet50.preprocess_input用法及代码示例
- Python tf.keras.metrics.SparseCategoricalCrossentropy.merge_state用法及代码示例
- Python tf.keras.metrics.sparse_categorical_accuracy用法及代码示例
- Python tf.keras.layers.Dropout用法及代码示例
- Python tf.keras.activations.softplus用法及代码示例
- Python tf.keras.utils.custom_object_scope用法及代码示例
- Python tf.keras.optimizers.Optimizer.set_weights用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.keras.datasets.fashion_mnist.load_data。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。