Construct a tensor by repeating it the number of times given by reps.
This operation creates a new tensor by replicating inputreps
times. The output tensor's ith dimension has input.shape[i] * reps[i] elements, and the values of input are replicated
reps[i] times along the ith dimension. For example, tiling
[a, b, c, d] by [2] produces [a, b, c, d, a, b, c, d].
Construct a tensor by repeating it the number of times given by reps.
This operation creates a new tensor by replicating
inputrepstimes. The output tensor'sith dimension hasinput.shape[i] * reps[i]elements, and the values ofinputare replicatedreps[i]times along theith dimension. For example, tiling[a, b, c, d]by[2]produces[a, b, c, d, a, b, c, d].