我使用了很多dtype="str"
數據。我一直在嘗試構建一個簡單的圖,如https://www.tensorflow.org/versions/master/api_docs/python/train.html#SummaryWriter。合併TensorFlow中的字符串張量
對於一個簡單的操作,我想使用的字符串連接在一起placeholder
如(How to feed a placeholder?)
有誰知道如何串張量合併到一起?
import tensorflow as tf
sess = tf.InteractiveSession()
with tf.name_scope("StringSequence") as scope:
left = tf.constant("aaa",name="LEFT")
middle = tf.placeholder(dtype=tf.string, name="MIDDLE")
right = tf.constant("ccc",name="RIGHT")
complete = tf.add_n([left,middle,right],name="COMPLETE") #fails here
sess.run(complete,feed_dict={middle:"BBB"})
#writer = tf.train.SummaryWriter("https://stackoverflow.com/users/mu/test_out/", sess.graph_def)
你有沒有找到一種方法來讓這個工作?應用這個有點令人困惑。 –