1
如何爲以下計算建立張量流圖?我現在面臨的問題是如何使用張量A的形狀信息,它具有可變的形狀大小。如何在張量流中使用張量的動態形狀
A = tf.placeholder(tf.float32, [None,10])
B = tf.Variable(tf.random_normal([10,20]))
C = tf.matmul(A, B)
D = tf.matmul(tf.transpose(C), A) # the value of A.shape[0]
謝謝。這工作。這並不完美,因爲每次你想要抓取D時,都必須記住餵食形狀。 – Negelis
其實這是一個很好的做法,有一個幫助器生成所有的飼料字典,你做的事情就像:'sess.run(,your_dict_helper())' –
我明白了。非常感謝! – Negelis