tf.keras.backend.tile

tf.keras.backend.tile(
    x,
    n
)

Defined in tensorflow/python/keras/backend.py.

Creates a tensor by tiling x by 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.