我正在阅读关于来自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'
为什么打印与教程不同。我该怎么办呢?