From f555ee3394499dba5e7474c691558babffb7d6fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=98=A5=E4=B9=94?= <83450930+Liyulingyue@users.noreply.github.com> Date: Tue, 29 Aug 2023 11:18:56 +0800 Subject: [PATCH] Modify the docs of UpsamplingNearest2D and UpsamplingBilinear2D (#6147) --- docs/api/paddle/nn/UpsamplingBilinear2D_cn.rst | 2 +- docs/api/paddle/nn/UpsamplingNearest2D_cn.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/paddle/nn/UpsamplingBilinear2D_cn.rst b/docs/api/paddle/nn/UpsamplingBilinear2D_cn.rst index ef6d215e584..62922c5dbd2 100644 --- a/docs/api/paddle/nn/UpsamplingBilinear2D_cn.rst +++ b/docs/api/paddle/nn/UpsamplingBilinear2D_cn.rst @@ -25,7 +25,7 @@ https://en.wikipedia.org/wiki/Bilinear_interpolation 参数 :::::::::::: - - **size** (list|tuple|Tensor|None) - 输出 Tensor,输入为 4D Tensor,形状为为(out_h, out_w)的 2-D Tensor。如果 :code:`size` 是列表,每一个元素可以是整数或者形状为[]的 0-D Tensor。如果 :code:`size` 是 Tensor,则其为 1D Tensor。默认值为 None。 + - **size** (int|list|tuple|Tensor|None) - 输出 Tensor,输入为 4D Tensor,形状为为(out_h, out_w)的 2-D Tensor。如果 :code:`size` 是一个整形数,则 `out_h` 和 `out_w` 都为这个数。如果 :code:`size` 是列表,每一个元素可以是整数或者形状为[]的 0-D Tensor。如果 :code:`size` 是 Tensor,则其为 1D Tensor。默认值为 None。 - **scale_factor** (float|Tensor|list|tuple|None) - 输入的高度或宽度的乘数因子。``size`` 和 ``scale_factor`` 至少要设置一个。``size`` 的优先级高于 ``scale_factor``。默认值为 None。如果 ``scale_factor`` 是一个 list 或 tuple,它必须与输入的 shape 匹配。 - **data_format** (str,可选) - 指定输入的数据格式,输出的数据格式将与输入保持一致。对于 4-D Tensor,支持 NCHW(num_batches, channels, height, width) 或者 NHWC(num_batches, height, width, channels),默认值:'NCHW'。 - **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。 diff --git a/docs/api/paddle/nn/UpsamplingNearest2D_cn.rst b/docs/api/paddle/nn/UpsamplingNearest2D_cn.rst index 080001e16f3..aef9a229ebf 100644 --- a/docs/api/paddle/nn/UpsamplingNearest2D_cn.rst +++ b/docs/api/paddle/nn/UpsamplingNearest2D_cn.rst @@ -53,7 +53,7 @@ https://en.wikipedia.org/wiki/Nearest-neighbor_interpolation 参数 :::::::::::: - - **size** (list|tuple|Tensor|None) - 输出 Tensor,输入为 4D Tensor,形状为(out_h, out_w)的 2-D Tensor。如果 :code:`size` 是列表,每一个元素可以是整数或者形状为[]的 0-D Tensor。如果 ``size`` 是 Tensor,则其为 1D Tensor。默认值为 None。 + - **size** (int|list|tuple|Tensor|None) - 输出 Tensor,输入为 4D Tensor,形状为(out_h, out_w)的 2-D Tensor。如果 :code:`size` 是一个整形数,则 `out_h` 和 `out_w` 都为这个数。如果 :code:`size` 是列表,每一个元素可以是整数或者形状为[]的 0-D Tensor。如果 ``size`` 是 Tensor,则其为 1D Tensor。默认值为 None。 - **scale_factor** (float|Tensor|list|None) - 输入的高度或宽度的乘数因子。``size`` 和 ``scale_factor`` 至少要设置一个。``size`` 的优先级高于 ``scale_factor``。默认值为 None。如果 ``scale_factor`` 是一个 list 或 tuple,它必须与输入的 shape 匹配。 - **data_format** (str,可选) - 指定输入的数据格式,输出的数据格式将与输入保持一致。对于 4-D Tensor,支持 NCHW(num_batches, channels, height, width) 或者 NHWC(num_batches, height, width, channels),默认值:'NCHW'。 - **name** (str,可选) - 具体用法请参见 :ref:`api_guide_Name`,一般无需设置,默认值为 None。