摘要: 1.tf.concat([a,b],axis=a):在第a维度上将tensor a与b进行合并。 example: input: a=tf.ones([2,5,6])b=tf.ones([3,5,6])c=tf.concat([a,b],axis=0)print(c.shape) output: ( 阅读全文
posted @ 2020-10-12 22:23 ladadee 阅读(467) 评论(0) 推荐(0)