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


Python tf.keras.layers.UpSampling1D用法及代码示例


一维输入的上采样层。

继承自:LayerModule

用法

tf.keras.layers.UpSampling1D(
    size=2, **kwargs
)

参数

  • size 整数。上采样因子。

沿时间轴重复每个时间步骤 size 次。

例子:

input_shape = (2, 2, 3)
x = np.arange(np.prod(input_shape)).reshape(input_shape)
print(x)
[[[ 0  1  2]
  [ 3  4  5]]
 [[ 6  7  8]
  [ 9 10 11]]]
y = tf.keras.layers.UpSampling1D(size=2)(x)
print(y)
tf.Tensor(
  [[[ 0  1  2]
    [ 0  1  2]
    [ 3  4  5]
    [ 3  4  5]]
   [[ 6  7  8]
    [ 6  7  8]
    [ 9 10 11]
    [ 9 10 11]]], shape=(2, 4, 3), dtype=int64)

输入形状:

具有形状的 3D 张量:(batch_size, steps, features)

输出形状:

具有形状的 3D 张量:(batch_size, upsampled_steps, features)

相关用法


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