Colab没有名为'tensorflow.examples.tutorials'的模块

时间:2020-09-28 07:30:02

标签: tensorflow google-colaboratory

我是该领域的初学者 使用Colab ,我有问题 没有tensorflow.examples.tutorials 我检查了某物是否存在 只有一件事叫做examples.saved_model

如果您知道如何下载或连接Colab

请给我一个解决方法

ModuleNotFoundError:Traceback (most recent call last)
<ipython-input-13-da20ef9adb09> in <module>()
----> 1 from tensorflow.examples.tutorials import mnist

ModuleNotFoundError: No module named 'tensorflow.examples.tutorials'

任何建议将不胜感激。

2 个答案:

答案 0 :(得分:1)

ModuleNotFoundError: No module named 'tensorflow.examples.tutorials'

tensorflow.examples.tutorials 现在已弃用,因此您收到此错误。

建议使用 tensorflow.keras.datasets ,请参考以下代码

import tensorflow as tf
(train_images, train_labels), (test_images, test_labels) = tf.keras.datasets.mnist.load_data()

有关更多详细信息,请参阅this

答案 1 :(得分:0)

谢谢您的回答。

我想使用示例的Minist函数,但无法使用它。.