module 'tensorflow' has no attribute 'get_default_session'
时间: 2023-04-27 17:02:19 浏览: 353
这个错误提示是因为 TensorFlow 模块中没有名为 get_default_session 的属性。可能是因为你使用了过时的代码或者版本不兼容导致的。建议检查代码中的 TensorFlow 版本和相关 API 的使用方式。
相关问题
attributeerror: module 'tensorflow' has no attribute 'get_default_session'
这个错误是因为 TensorFlow 模块中没有 get_default_session 这个属性。可能是因为你使用的 TensorFlow 版本不同或者代码有误。建议检查代码中是否有拼写错误或者版本不匹配的问题。
AttributeError: module 'tensorflow' has no attribute 'get_default_session'
这个错误通常是因为 TensorFlow 版本过高导致的,可以尝试使用以下代码解决:
```python
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
这样就可以使用 `tf.Session()` 代替 `tf.get_default_session()`。
阅读全文