D:\python\python.exe D:\code\Production_Practice_GAN-main\Production_Practice_GAN-main\main.py Traceback (most recent call last): File "D:\code\Production_Practice_GAN-main\Production_Practice_GAN-main\main.py", line 1, in <module> from AnimeGAN import AnimeGAN File "D:\code\Production_Practice_GAN-main\Production_Practice_GAN-main\AnimeGAN.py", line 1, in <module> from ops import * File "D:\code\Production_Practice_GAN-main\Production_Practice_GAN-main\ops.py", line 2, in <module> import tensorflow.contrib as tf_contrib ModuleNotFoundError: No module named 'tensorflow.contrib'
时间: 2023-09-07 10:11:51 浏览: 125
python使用 __init__初始化操作简单示例
5星 · 资源好评率100%
这个错误信息显示你的代码在导入 tensorflow.contrib 模块时出现了问题,可能是因为你的 TensorFlow 版本太新或太旧。在 TensorFlow 2.0 中,已经删除了 tensorflow.contrib 模块,如果你的代码是基于 TensorFlow 1.x 编写的,那么建议你使用 TensorFlow 1.x 的版本来运行代码。如果你已经使用了 TensorFlow 1.x 的版本,那么可以尝试安装适当的 TensorFlow 版本或者检查你的代码中是否存在拼写错误或路径问题。
阅读全文