Skip to content

Commit

Permalink
fix docs bugs:docs\api\paddle\nn\RNN_cn.rst (#6320)
Browse files Browse the repository at this point in the history
* fix docs bugs

* fix docs bugs
  • Loading branch information
fsczz committed Nov 23, 2023
1 parent ff1c3f6 commit 433b80f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/api/paddle/nn/RNN_cn.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ RNN
**循环神经网络**

循环神经网络(RNN)的封装,将输入的 Cell 封装为一个循环神经网络。它能够重复执行 :code:`cell.forward()` 直到遍历完 input 中的所有 Tensor
循环神经网络(RNN)的封装,将输入的 Cell 封装为一个循环神经网络。它能够重复执行 :code:`cell.forward()` 直到达到 inputs 的最大长度

参数
::::::::::::

- **cell** (RNNCellBase) - RNNCellBase 类的一个实例。
- **is_reverse** (bool,可选) - 指定遍历 input 的方向。默认为 False
- **is_reverse** (bool,可选) - 指定遍历 input 的方向。默认为 False
- **time_major** (bool,可选) - 指定 input 的第一个维度是否是 time steps。默认为 False。

输入
Expand Down

0 comments on commit 433b80f

Please sign in to comment.