tf.compat.v1.disable_eager_execution()含义
时间: 2023-05-20 19:02:12 浏览: 257
AttributeError: module 'tensorflow.compat.v1' has no attribute '
tf.compat.v1.disable_eager_execution()是TensorFlow 2.0中的一个函数,它的作用是禁用TensorFlow的即时执行模式,这意味着TensorFlow会在运行时构建计算图,而不是在每个操作上立即执行。这个函数通常用于TensorFlow 1.x代码的兼容性。
阅读全文