【发布时间】:2018-02-03 08:20:03
【问题描述】:
我正在尝试为 TensorArray 和 while_loop 的组合提供一个非常简单的示例:
# 1000 sequence in the length of 100
matrix = tf.placeholder(tf.int32, shape=(100, 1000), name="input_matrix")
matrix_rows = tf.shape(matrix)[0]
ta = tf.TensorArray(tf.float32, size=matrix_rows)
ta = ta.unstack(matrix)
init_state = (0, ta)
condition = lambda i, _: i < n
body = lambda i, ta: (i + 1, ta.write(i,ta.read(i)*2))
# run the graph
with tf.Session() as sess:
(n, ta_final) = sess.run(tf.while_loop(condition, body, init_state),feed_dict={matrix: tf.ones(tf.float32, shape=(100,1000))})
print (ta_final.stack())
但我收到以下错误:
ValueError: Tensor("while/LoopCond:0", shape=(), dtype=bool) must be from the same graph as Tensor("Merge:0", shape=(), dtype=float32).
有人知道是什么问题吗?
【问题讨论】:
-
要获得最终的
TensorArray,你需要session.run(ta.stack()),而不是直接运行循环,因为你不能session.run(TensorArray)。 -
对不起,我没明白你的意思。请写出正确的表格好吗?
标签: python tensorflow