tensorflow eager execution
程序员文章站
2024-01-19 12:44:58
...
tensorflow 1.8 的新模式模式,相对与之前默认的graph execution模式而言简直就是码农们的福音,因为使用它就可以进行调试了。
import tensorflow as tf
tf.enable_eager_execution()
x = tf.zeros((3, 3))
x += 2
print(x)
output:
tf.Tensor(
[[2. 2. 2.]
[2. 2. 2.]
[2. 2. 2.]], shape=(3, 3), dtype=float32)
如果是之前的graph execution模式的话,必须在Session
中运行
据说tensorflow 2.0 讲采用这个模式为默认模式,很期待啊!