tf.keras.backend.tile

View source on GitHub

Creates a tensor by tiling x by n.

Aliases:

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.