如何深入理解TensorFlow中tf.concat()函数的应用?
- 内容介绍
- 文章标签
- 相关推荐
本文共计474个文字,预计阅读时间需要2分钟。
`concat`函数用于将具有相同维度的tensor沿着指定轴连接起来。在TensorFlow 1.3版本中,其定义如下:
pythonconcat(values, axis, name='concat')
例如,对于二维tensor,0表示行,1表示列。给定以下tensor:
`t1=[[1, 2, 3], [4, 5, 6]]``t2=[[7, 8, 9], [10, 11, 12]]`
使用`concat`函数连接这两个tensor:
pythont1=[[1, 2, 3], [4, 5, 6]]t2=[[7, 8, 9], [10, 11, 12]]
concat()是将tensor沿着指定维度连接起来。
本文共计474个文字,预计阅读时间需要2分钟。
`concat`函数用于将具有相同维度的tensor沿着指定轴连接起来。在TensorFlow 1.3版本中,其定义如下:
pythonconcat(values, axis, name='concat')
例如,对于二维tensor,0表示行,1表示列。给定以下tensor:
`t1=[[1, 2, 3], [4, 5, 6]]``t2=[[7, 8, 9], [10, 11, 12]]`
使用`concat`函数连接这两个tensor:
pythont1=[[1, 2, 3], [4, 5, 6]]t2=[[7, 8, 9], [10, 11, 12]]
concat()是将tensor沿着指定维度连接起来。

