我有这个问题,因为我发现setState((){
//increment and decrement height of AnimatedContainer
})
中的某些功能无法与eager_execution
一起使用。
例如,当我运行with tf.Session() as sess
循环时,可以在运行eager_execution
的错误range
时使用TypeError: Tensor objects are only iterable when eager execution is enabled.
。 (也似乎sess
不起作用)
这种不一致让我很烦,有人可以解释吗?另外,我认为if ... else
在帮助立即验证我的编码方面会有所帮助,但是如果它与eager_execution
不符,对我来说就没有意义。如何解决这个问题(以tf.graph
模式进行编码并以eager
进行编译时)?