tf.compat.v1.disable_eager_execution()
时间: 2023-04-28 13:00:11 浏览: 128
杀掉Exe进程
tf.compat.v1.disable_eager_execution() 是 TensorFlow 1.x 版本中的一个函数,用于关闭 Eager Execution 模式。Eager Execution 是 TensorFlow 2.0 之前的一种默认模式,允许开发者立即执行操作而不需要构建计算图。使用这个函数可以在使用 TensorFlow 1.x 时关闭 Eager Execution。
阅读全文