Skip to content

Commit

Permalink
Modify the docs of UpsamplingNearest2D and UpsamplingBilinear2D (#6147)
Browse files Browse the repository at this point in the history
  • Loading branch information
Liyulingyue authored Aug 29, 2023
1 parent 87a307f commit f555ee3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/api/paddle/nn/UpsamplingBilinear2D_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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。
Expand Down
2 changes: 1 addition & 1 deletion docs/api/paddle/nn/UpsamplingNearest2D_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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。
Expand Down

0 comments on commit f555ee3

Please sign in to comment.