当对<node> .graph启用急切执行时,Tensor.graph没有意义

时间:2020-05-03 17:04:17

标签: python tensorflow2.0

我有这个代码。

 import tensorflow as tf

 g = tf.Graph()
 a = tf.constant(5)
 print(a.graph is g)
 print(a.graph is tf.get_default_graph())

它不起作用,出现此错误。

Tensor.graph在启用急切执行时是没有意义的。

我怎么了?

0 个答案:

没有答案