TensorFlow 1 version | View source on GitHub |
Creates a tensor by tiling x
by n
.
tf.keras.backend.tile(
x, n
)
Arguments | |
---|---|
x
|
A tensor or variable |
n
|
A list of integer. The length must be the same as the number of
dimensions in x .
|
Returns | |
---|---|
A tiled tensor. |