【发布时间】:2020-02-24 19:18:53
【问题描述】:
张量流中下载数据集的默认位置是什么? 例如,运行后在我的 PC 上哪里可以找到 CIFAR-100 数据集:
import tensorflow as tf
cifar100 = tf.keras.datasets.cifar100
(x_train, y_train), (x_test, y_test) = cifar100.load_data()
# ... a lot of training code here
【问题讨论】:
标签: python-3.x tensorflow tensorflow-datasets