当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.tile用法及代码示例


通过平铺给定的张量来构造张量。

用法

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

参数

  • input 一个Tensor。一维或更高。
  • multiples 一个Tensor。必须是以下类型之一:int32 , int64。一维。长度必须与input中的维数相同
  • name 操作的名称(可选)。

返回

  • 一个Tensor。具有与 input 相同的类型。

此操作通过复制 input multiples 次来创建一个新的张量。输出张量's i'th 维度具有input.dims(i) * multiples[i] 元素,并且input 的值沿'i'th 维度复制multiples[i] 次。例如,通过 [2] 平铺 [a b c d] 会产生 [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)>

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.tile。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。