답변

5
tf.concat

Tensorflow가 있습니다 branchX는 다른 경로의 결과 텐서이다

concatenated_tensor = tf.concat(3, [branch1, branch2, branch3, branch4]) 

.