tf.reset_default_graph()更新成了什么函数
时间: 2024-05-25 13:15:43 浏览: 125
TensorFlow使用Graph的基本操作的实现
在TensorFlow 2.x中,tf.reset_default_graph()已经不再使用,因为TensorFlow 2.x使用了eager execution模式,该模式下不需要显式地重置默认图。 相反,可以使用tf.compat.v1.disable_eager_execution()来禁用eager execution模式,并使用tf.compat.v1.reset_default_graph()来重置默认图。
阅读全文