• Concatenates a list oftf.Tensor1Ds along an axis. See concat 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|

    Parameters

    Returns Tensor1D

    The concatenated array.

Generated using TypeDoc