AttributeError: ‘Tensor‘ object has no attribute ‘numpy‘报错问题解决

AttributeError: ‘Tensor’ object has no attribute 'numpy’报错问题解决

出现以下错误:
在这里插入图片描述
添加下面的代码就可以解决。

tf.enable_eager_execution(
    config=None,
    device_policy=None,
    execution_mode=None
)

你可能感兴趣的:(python)