Skip to content
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/divide_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ divide
逐元素相除算子,输入 ``x`` 与输入 ``y`` 逐元素相除,并将各个位置的输出元素保存到返回结果中。

.. note::
别名支持: 参数名 ``input`` 可替代 ``x``,参数名 ``other`` 可替代 ``y`` ,如 ``divide(input=tensor_x, other=tensor_y, ...)`` 等价于 ``divide(x=tensor_x, y=tensor_y, ...)`` 。
输入 ``x`` 与输入 ``y`` 必须和广播为相同形状,关于广播规则,请参见 `Tensor 介绍`_ .
别名支持参数名 ``input`` 可替代 ``x``,参数名 ``other`` 可替代 ``y`` ,如 ``divide(input=tensor_x, other=tensor_y, ...)`` 等价于 ``divide(x=tensor_x, y=tensor_y, ...)`` 。
输入 ``x`` 与输入 ``y`` 必须和广播为相同形状,关于广播规则,请参见 `Tensor 介绍`_

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

Expand Down
4 changes: 2 additions & 2 deletions docs/api/paddle/dot_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dot
支持 1 维和 2 维 Tensor。如果是 2 维 Tensor,矩阵的第一个维度是 batch_size,将会在多个样本上进行点积计算。

.. note::
别名支持: 参数名 ``input`` 可替代 ``x``, ``tensor`` 可替代 ``y``。
别名支持参数名 ``input`` 可替代 ``x``, ``tensor`` 可替代 ``y``。

参数
:::::::::
Expand All @@ -27,7 +27,7 @@ dot
关键字参数
:::::::::

- **out** (Tensor,可选) - 指定输出结果的 `Tensor`,默认值为 None。
- **out** (Tensor,可选) - 指定输出结果的 ``Tensor``,默认值为 None。

返回
:::::::::
Expand Down
2 changes: 1 addition & 1 deletion docs/api/paddle/dsplit_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dsplit
.. note::
请确保使用 ``paddle.dsplit`` 进行变换的 Tensor 维度数量不少于 3。

如下图,Tenser ``x`` 的 shape 为[4, 4, 4],经过 ``paddle.dsplit(x, num_or_indices=2)`` 变换后,得到 ``out0`` 和 ``out1`` 两个 shape 均为[4, 4, 2]的子 Tensor :
如下图,Tensor ``x`` 的 shape 为[4, 4, 4],经过 ``paddle.dsplit(x, num_or_indices=2)`` 变换后,得到 ``out0`` 和 ``out1`` 两个 shape 均为[4, 4, 2]的子 Tensor

.. image:: ../../images/api_legend/dsplit/dsplit.png
:alt: dsplit 图例
Expand Down