tf.enable_eager_execution 只能在 SPYDER 中的程序启动时调用 IDE

tf.enable_eager_execution must be called at program startup ONLY in SPYDER IDE

我尝试执行简单代码的快速执行。

我在 Jupyter Notebook 和 Spyder 上都试过了 IDE。 使用 Jupyter 我没有问题,但是当我在 Spyder 中执行代码时 returns 出现错误:

File "C:\...\lib\site-packages\tensorflow\python\framework\ops.py", line 5496, in enable_eager_execution "tf.enable_eager_execution must be called at program startup.")
ValueError: tf.enable_eager_execution must be called at program startup.

代码如下:

import tensorflow as tf
tf.enable_eager_execution ()
import tensorflow.contrib.eager as tfe
def square (x):
     return tf.multiply (x, x)

grad = tfe.gradients_function (square)

print (grad (3.))

键入 Command + .(在 Mac 上)或 Ctrl + .(在 Windows 上)以重新启动您的 Spyder 内核。