我正在尝试在Colab笔记本上使用Tensorflow启用急切执行,但收到错误消息:
import tensorflow as tf
import tensorflow.contrib.eager as tfe
tf.enable_eager_execution()
ValueError:必须在程序启动时调用tf.enable_eager_execution
我试图单击“重置运行时”以在启动时运行tf.enable_eager_execution,但错误再次出现。
打开其他笔记本无济于事。
在出现此错误之后,我可以在Colab中做什么以允许急切执行?
谢谢。
答案 0 :(得分:7)
这是我们这方面的错误,现在可以修复,并且原始代码段应该可以再次使用。参见Tensorflow eager mode dose not work when GPU is enabled in google colab · Issue #262 · googlecolab/colabtools。
(注意:我是Google合作小组的成员。)