AttributeError:模块“tensorflow”没有属性“reset_default_graph”
环境配置:
python3.7
tensorflow2.0
Window 10
初始代码:
tf.reset_default_graph()
执行错误:
解决方法:
import tensorflow as tf
tf.compat.v1.reset_default_graph()
或者是这样:
import tensorflow.compat.v1 as tf
tf.reset_default_graph()