AttributeError: module 'tensorflow' has no attribute 'get_default_session'
时间: 2023-10-26 14:06:59 浏览: 127
问题解决:module 'tensorflow.compat.v1' has no attribute '
5星 · 资源好评率100%
这个错误通常是因为 TensorFlow 版本过高导致的,可以尝试使用以下代码解决:
```python
import tensorflow.compat.v1 as tf
tf.disable_v2_behavior()
```
这样就可以使用 `tf.Session()` 代替 `tf.get_default_session()`。
阅读全文