赞
踩
环境配置:
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()
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。