📅  最后修改于: 2023-12-03 14:44:20.607000             🧑  作者: Mango
这个错误通常是因为您的Tensorflow版本更新到2.0+后,某些旧的代码和示例不再起作用。
在Tensorflow 2.0+中,tensorflow.examples被移除,其示例被移到了新的仓库tensorflow-examples中。
因此,如果您想继续使用这些示例,您需要通过以下方式重新安装tensorflow-examples:
pip install tensorflow-examples
然后,您就可以通过以下方式导入这些示例:
from tensorflow_examples import *
请注意,这里的导入方式与旧版本中不同,旧版本中的导入方式为:
from tensorflow.examples.tutorials.mnist import input_data
如您在使用Tensorflow 2.0+时遇到类似的导入错误,您可以尝试重新安装或更新Tensorflow相关库,或查看官方文档以了解最新示例的导入方式。