2016-12-10 6 views

答えて

1

これにはtf.concat()を使用できます。

a = tf.placeholder('float', (None, 2)) 
b = tf.placeholder('float', (None, 3)) 
c = tf.concat(1, [a,b]) 
関連する問題