Skip to content

[Docathon][Fix note No.1-4] #7132

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/api/paddle/add_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ add
逐元素相加算子,输入 ``x`` 与输入 ``y`` 逐元素相加,并将各个位置的输出元素保存到返回结果中。

.. note::
输入 ``x`` 与输入 ``y`` 必须和广播为相同形状,关于广播规则,请参见 `Tensor 介绍`_ .
输入 ``x`` 与输入 ``y`` 必须和广播为相同形状,关于广播规则,请参见 `Tensor 介绍`_ .

.. _Tensor 介绍: ../../guides/beginner/tensor_cn.html#id7
.. _Tensor 介绍: ../../guides/beginner/tensor_cn.html#id7

等式为:

Expand Down
2 changes: 1 addition & 1 deletion docs/api/paddle/greater_equal_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ greater_equal
逐元素地返回 :math:`x >= y` 的逻辑值,相同位置前者输入大于等于后者输入返回 True,否则返回 False。使用重载算子 `>=` 可以有相同的计算函数效果。

.. note::
输出的结果不返回梯度。
输出的结果不返回梯度。

参数
::::::::::::
Expand Down
2 changes: 1 addition & 1 deletion docs/api/paddle/linalg/eigvals_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ eigvals


.. note::
该 API 的反向实现尚未完成,若你的代码需要对其进行反向传播,请使用 ref:`cn_api_paddle_linalg_eig`。
该 API 的反向实现尚未完成,若你的代码需要对其进行反向传播,请使用 ref:`cn_api_paddle_linalg_eig`。


参数
Expand Down
4 changes: 2 additions & 2 deletions docs/api/paddle/tensordot_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ shape = [2,2,3]的 ``res`` 张量为 a,b 两个张量沿着 a 张量的最后一

.. note::

1. 本 API 支持 Tensor 维度广播,``x`` 和 ``y`` 做缩并操作的对应维度 size 必须相等,或适用于广播规则。
2. 本 API 支持 axes 扩展,当指定的 ``x`` 和 ``y`` 两个轴序列长短不一时,短的序列会自动在末尾补充和长序列相同的轴下标。例如,如果输入 ``axes`` =[[0, 1, 2, 3], [1, 0]],则指定 ``x`` 的轴序列是[0, 1, 2, 3],对应 ``y`` 的轴序列会自动从[1,0]扩展成[1, 0, 2, 3]。
1. 本 API 支持 Tensor 维度广播,``x`` 和 ``y`` 做缩并操作的对应维度 size 必须相等,或适用于广播规则。
2. 本 API 支持 axes 扩展,当指定的 ``x`` 和 ``y`` 两个轴序列长短不一时,短的序列会自动在末尾补充和长序列相同的轴下标。例如,如果输入 ``axes`` =[[0, 1, 2, 3], [1, 0]],则指定 ``x`` 的轴序列是[0, 1, 2, 3],对应 ``y`` 的轴序列会自动从[1,0]扩展成[1, 0, 2, 3]。

代码示例
::::::::::::
Expand Down