tf.concat()詳解

tensorflow中用來拼接張量的函數tf.concat(),用法:python tf.concat([tensor1, tensor2, tensor3,...], axis) 先給出tf源代碼中的解釋:數組 t1 = [[1, 2, 3], [4, 5, 6]] t2 = [[7, 8, 9], [10, 11, 12]] tf.concat([t1, t2], 0) # [[1,
相關文章
相關標籤/搜索