Concatenates a list oftf.Tensor1Ds along an axis. See concat for details.
tf.Tensor1D
concat
For example, if: A: shape(3) = |r1, g1, b1| B: shape(2) = |r2, g2| C = tf.concat1d([A, B]) == |r1, g1, b1, r2, g2|
A list oftf.Tensors to concatenate.
tf.Tensor
The concatenated array.
Generated using TypeDoc
Concatenates a list of
tf.Tensor1D
s along an axis. Seeconcat
for details.For example, if: A: shape(3) = |r1, g1, b1| B: shape(2) = |r2, g2| C = tf.concat1d([A, B]) == |r1, g1, b1, r2, g2|