fix bug of glu doc

This commit is contained in:
lianliguang 2022-11-07 10:03:32 +08:00
parent 179341710f
commit 6a982347cf
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。