首先使用下面的代码加载CIFAR-10数据集。
(x_train, y_train), (x_test, y_test) = tf.keras.datasets.cifar10.load_data()
但是,将Keras
安装到环境中后,运行上述行会导致错误:
>>> AttributeError: module 'tensorflow' has no attribute 'keras'
我的解决方案是改用Keras CIFAR-10加载模块:
(x_train, y_train), (x_test, y_test) = cifar10.load_data()
我想了解为什么安装Keras的pip搞砸了tf.keras
软件包。
答案 0 :(得分:0)
您可能正在运行比tf.keras早的tensorflow版本。更新您的张量流版本。