Tensorflow急切执行'NoneType'对象没有属性'numpy'

时间:2018-03-21 15:01:26

标签: tensorflow

我正在阅读关于来自here

的TensorFlow Eager Execution的教程
# Third order derivative.
d3f = tfe.gradients_function(lambda x: d2f(x)[0])
print(d3f(3.))
assert 0 == d3f(9.)[0].numpy()

输出:

[None]

它产生

AttributeError: 'NoneType' object has no attribute 'numpy'

为什么打印与教程不同。我该怎么办呢?

0 个答案:

没有答案