我正在尝试学习TensorFlow。目前,我正在与占位符一起工作。当我尝试创建占位符时,出现错误:RuntimeError: tf.placeholder() is not compatible with eager execution,因为占位符不能立即执行,所以这很有意义。
RuntimeError: tf.placeholder() is not compatible with eager execution
那么,如何关闭渴望执行的程序?
首先,我从未渴望执行过,所以我不确定它是如何发生的。与之相反tf.disable_eager_execution()吗?
tf.disable_eager_execution()
tensorflow
tensorflow ×1