AttributeError: module 'tensorflow' has no attribute 'logging'
时间: 2023-10-19 13:08:22 浏览: 379
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
从 TensorFlow 2.0 开始,`logging` 模块已被删除。要解决此问题,您可以将所有的 `import tensorflow.logging as logging` 替换为 `import logging`,并在代码中使用 `logging` 代替 `tensorflow.logging`。如果您的代码是从旧版本的 TensorFlow 中移植而来的,则需要进行相应的更新。
阅读全文