Skip to content

Commit

Permalink
Update nanmean_cn.rst
Browse files Browse the repository at this point in the history
修改参数x的数据类型描述与英文文档对齐
  • Loading branch information
Li-fAngyU authored Apr 2, 2022
1 parent 4a6c796 commit e42085d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api/paddle/nanmean_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ paddle.nanmean

参数
::::::::::
- x (Tensor) - 输入的Tensor,数据类型为:float32、float64。
- x (Tensor) - 输入的Tensor,数据类型为:unit16、float16、float32、float64。
- axis (int|list|tuple,可选) - 指定对 ``x`` 进行计算的轴。``axis`` 可以是int、list(int)、tuple(int)。如果 ``axis`` 包含多个维度,则沿着 ``axis`` 中的所有轴进行计算。``axis`` 或者其中的元素值应该在范围[-D, D)内,D是 ``x`` 的维度。如果 ``axis`` 或者其中的元素值小于0,则等价于 :math:`axis + D` 。如果 ``axis`` 是None,则对 ``x`` 的全部元素计算平均值。默认值为None。
- keepdim (bool,可选) - 是否在输出Tensor中保留减小的维度。如果 ``keepdim`` 为True,则输出Tensor和 ``x`` 具有相同的维度(减少的维度除外,减少的维度的大小为1)。否则,输出Tensor的形状会在 ``axis`` 上进行squeeze操作。默认值为False。
- name (str,可选) - 操作的名称(可选,默认值为None)。更多信息请参见 :ref:`api_guide_Name`。
Expand Down

1 comment on commit e42085d

@paddle-bot-old
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.