!35296 Update api doc Ainh & Softsign

Merge pull request !35296 from panzhihui/code_docs_cn_api4
This commit is contained in:
i-robot 2022-06-01 09:08:10 +00:00 committed by Gitee
commit 0a05f67681
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 4 additions and 31 deletions

View File

@ -6,15 +6,3 @@ mindspore.ops.Asinh
逐元素计算输入Tensor的反双曲正弦值。
更多细节请参考 :func:`mindspore.ops.asinh`
**输入:**
- **x** (Tensor) - shape为 :math:`(N,*)` 的输入Tensor其中 :math:`*` 表示任何数量的附加维度。其轶应小于8。
**输出:**
Tensorshape和数据类型与输入 `x` 相同。
**异常:**
- **TypeError** - `x` 不是Tensor。

View File

@ -5,21 +5,4 @@
Softsign激活函数。
函数计算如下:
.. math::
\text{SoftSign}(x) = \frac{x}{ 1 + |x|}
**输入:**
- **input_x** (Tensor) - shape :math:`(N, *)` ,其中 :math:`*` 表示任意数量的附加维度数据类型支持float16或float32。
**输出:**
Tensor`input_x` 的shape和数据类型相同。
**异常:**
- **TypeError** - `input_x` 不是Tensor。
- **TypeError** - `input_x` 的数据类型非float16或float32。
更多细节请参考 :func:`mindspore.ops.softsign`

View File

@ -21,4 +21,6 @@
**异常:**
- **TypeError** - 如果 `x``y` 不是数值型、bool或Tensor。
- **TypeError** - 如果 `x``y` 不是数值型、bool或Tensor。
- **TypeError** - 如果 `x``y` 的数据类型不是float16、float32或float64。
- **TypeError** - 如果 `x` 不能广播到与 `y` 的shape一致。