Tensorflow tf.concat

时间:2017-12-29 11:18:02

标签: python tensorflow

很抱歉提出一个完全基本的问题,但我尝试使用tf.concat()功能。为了开始,我尝试在他们的网站上运行示例代码:https://www.tensorflow.org/versions/r0.12/api_docs/python/array_ops/slicing_and_joining

t1 = [[1, 2, 3], [4, 5, 6]]
t2 = [[7, 8, 9], [10, 11, 12]]
tf.concat(0, [t1, t2]) 

这应该生成输出:[[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]

但是,我收到错误消息,说

  

"形状(2,2,3)和()不兼容"。

1 个答案:

答案 0 :(得分:0)

你可以用 tf.concat([t1,t2],0)