tensorflow2 不同维度张量的合并

a=tf.Variable([[1,2,3],[4,5,6],[7,8,9]])
b = tf.Variable([[1],[2],[3]])

c = tf.concat([a,b],1)
print(c)

最终输出
最终输出
注意:
把第二句换为b = np.array([[1],[2],[3]]) 会报错

你可能感兴趣的:(笔记,tensorflow,深度学习,机器学习)