AttributeError: module 'tensorflow._api.v2.saved_model' has no attribute 'tf'
时间: 2023-08-21 13:16:26 浏览: 134
pycharm用import报错:AttributeError: module tensorflow(or other) has no attribut (import搜索路径顺序问题)
这个错误通常是由于导入 TensorFlow 的方式不正确引起的。确保你使用的是正确的导入语句,例如:
```
import tensorflow as tf
```
如果你仍然遇到此错误,请检查你的 TensorFlow 版本是否正确安装。有时候,不同版本的 TensorFlow 可能会引起命名空间的冲突。你可以尝试更新 TensorFlow 或者重新安装 TensorFlow 来解决这个问题。
阅读全文