tf.raw_ops.Tile
bookmark_borderbookmark
Stay organized with collections
Save and categorize content based on your preferences.
Constructs a tensor by tiling a given tensor.
View aliases
Compat aliases for migration
See
Migration guide for
more details.
tf.compat.v1.raw_ops.Tile
tf.raw_ops.Tile(
input, multiples, name=None
)
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]
.
a = tf.constant([[1,2,3],[4,5,6]], tf.int32)
b = tf.constant([1,2], tf.int32)
tf.tile(a, b)
<tf.Tensor: shape=(2, 6), dtype=int32, numpy=
array([[1, 2, 3, 1, 2, 3],
[4, 5, 6, 4, 5, 6]], dtype=int32)>
c = tf.constant([2,1], tf.int32)
tf.tile(a, c)
<tf.Tensor: shape=(4, 3), dtype=int32, numpy=
array([[1, 2, 3],
[4, 5, 6],
[1, 2, 3],
[4, 5, 6]], dtype=int32)>
d = tf.constant([2,2], tf.int32)
tf.tile(a, d)
<tf.Tensor: shape=(4, 6), dtype=int32, numpy=
array([[1, 2, 3, 1, 2, 3],
[4, 5, 6, 4, 5, 6],
[1, 2, 3, 1, 2, 3],
[4, 5, 6, 4, 5, 6]], dtype=int32)>
Args |
input
|
A Tensor . Can be of any rank.
|
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 .
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates. Some content is licensed under the numpy license.
Last updated 2024-04-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-04-26 UTC."],[],[],null,["# tf.raw_ops.Tile\n\n\u003cbr /\u003e\n\nConstructs a tensor by tiling a given tensor.\n\n#### View aliases\n\n\n**Compat aliases for migration**\n\nSee\n[Migration guide](https://www.tensorflow.org/guide/migrate) for\nmore details.\n\n[`tf.compat.v1.raw_ops.Tile`](https://www.tensorflow.org/api_docs/python/tf/raw_ops/Tile)\n\n\u003cbr /\u003e\n\n tf.raw_ops.Tile(\n input, multiples, name=None\n )\n\nThis operation creates a new tensor by replicating `input` `multiples` times.\nThe output tensor's i'th dimension has `input.dims(i) * multiples[i]` elements,\nand the values of `input` are replicated `multiples[i]` times along the 'i'th\ndimension. For example, tiling `[a b c d]` by `[2]` produces\n`[a b c d a b c d]`. \n\n a = tf.constant([[1,2,3],[4,5,6]], tf.int32)\n b = tf.constant([1,2], tf.int32)\n tf.tile(a, b)\n \u003ctf.Tensor: shape=(2, 6), dtype=int32, numpy=\n array([[1, 2, 3, 1, 2, 3],\n [4, 5, 6, 4, 5, 6]], dtype=int32)\u003e\n c = tf.constant([2,1], tf.int32)\n tf.tile(a, c)\n \u003ctf.Tensor: shape=(4, 3), dtype=int32, numpy=\n array([[1, 2, 3],\n [4, 5, 6],\n [1, 2, 3],\n [4, 5, 6]], dtype=int32)\u003e\n d = tf.constant([2,2], tf.int32)\n tf.tile(a, d)\n \u003ctf.Tensor: shape=(4, 6), dtype=int32, numpy=\n array([[1, 2, 3, 1, 2, 3],\n [4, 5, 6, 4, 5, 6],\n [1, 2, 3, 1, 2, 3],\n [4, 5, 6, 4, 5, 6]], dtype=int32)\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Args ---- ||\n|-------------|---------------------------------------------------------------------------------------------------------------------------------------|\n| `input` | A `Tensor`. Can be of any rank. |\n| `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` |\n| `name` | A name for the operation (optional). |\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n\u003cbr /\u003e\n\n| Returns ------- ||\n|---|---|\n| A `Tensor`. Has the same type as `input`. ||\n\n\u003cbr /\u003e"]]