Skip to content

Latest commit

 

History

History
43 lines (28 loc) · 1022 Bytes

tile.md

File metadata and controls

43 lines (28 loc) · 1022 Bytes

page_type: reference

<style>{% include "site-assets/css/style.css" %}</style>

tf.tile

Aliases:

  • tf.manip.tile
  • tf.tile
tf.tile(
    input,
    multiples,
    name=None
)

Defined in generated file: tensorflow/python/ops/gen_array_ops.py.

Constructs a tensor by tiling a given tensor.

This operation creates a new tensor by replicating input multiples times. The output tensor's i'th dimension has input.dims(i) * multiples[i] elements, and the values of input are replicated multiples[i] times along the 'i'th dimension. For example, tiling [a b c d] by [2] produces [a b c d a b c d].

Args:

  • input: A Tensor. 1-D or higher.
  • multiples: A Tensor. Must be one of the following types: int32, int64. 1-D. Length must be the same as the number of dimensions in input
  • name: A name for the operation (optional).

Returns:

A Tensor. Has the same type as input.