AttributeError: module 'tensorflow' has no attribute 'get_default_graph'怎么解决,目前使用的tensorflow版本为2.3.0
时间: 2023-11-30 14:43:03 浏览: 152
module ‘tensorflow’ has no attribute ‘get_default_graph’
针对您提供的问题,出现"AttributeError: module 'tensorflow' has no attribute 'get_default_graph'"的原因是在TensorFlow 2.0及以上版本中,get_default_graph()方法已经被弃用。因此,如果您使用的是TensorFlow 2.0及以上版本,建议使用以下方法来获取默认图:
```python
import tensorflow as tf
g = tf.compat.v1.get_default_graph()
```
如果您使用的是TensorFlow 1.x版本,则可以使用以下方法获取默认图:
```python
import tensorflow as tf
g = tf.get_default_graph()
```
阅读全文