!45195 fix glu docs

Merge pull request !45195 from lianliguang/code_docs_ms
This commit is contained in:
i-robot 2022-11-07 06:12:24 +00:00 committed by Gitee
commit 100b5066df
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 2 additions and 2 deletions

View File

@ -19,4 +19,4 @@ mindspore.nn.GLU
- **x** (Tensor) - Tensor的shape为 :math:`(\ast_1, N, \ast_2)``*` 表示任意数量的维度。
输出:
Tensor数据类型与输入 `x` 相同shape等于 `x` 按照 `axis` 拆分后的一半。
Tensor数据类型与输入 `x` 相同shape:math:`(\ast_1, M, \ast_2)`,其中 :math:`M=N/2`

View File

@ -16,7 +16,7 @@ mindspore.ops.glu
- **axis** (int可选) - 指定分割轴。数据类型为整型,默认值:-1。
返回:
Tensor数据类型与输入 `x` 相同shape为 :math:`(\ast_1, M, \ast_2)`,其中:math:`M=N/2`
Tensor数据类型与输入 `x` 相同shape为 :math:`(\ast_1, M, \ast_2)`,其中 :math:`M=N/2`
异常:
- **TypeError** - `x` 数据类型不是number.Number。