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
input
reps
times. The output tensor'si
th dimension hasinput.shape[i] * reps[i]
elements, and the values ofinput
are replicatedreps[i]
times along thei
th dimension. For example, tiling[a, b, c, d]
by[2]
produces[a, b, c, d, a, b, c, d]
.