forked from mindspore-Ecosystem/mindspore
!35296 Update api doc Ainh & Softsign
Merge pull request !35296 from panzhihui/code_docs_cn_api4
This commit is contained in:
commit
0a05f67681
|
@ -6,15 +6,3 @@ mindspore.ops.Asinh
|
|||
逐元素计算输入Tensor的反双曲正弦值。
|
||||
|
||||
更多细节请参考 :func:`mindspore.ops.asinh` 。
|
||||
|
||||
**输入:**
|
||||
|
||||
- **x** (Tensor) - shape为 :math:`(N,*)` 的输入Tensor,其中 :math:`*` 表示任何数量的附加维度。其轶应小于8。
|
||||
|
||||
**输出:**
|
||||
|
||||
Tensor,shape和数据类型与输入 `x` 相同。
|
||||
|
||||
**异常:**
|
||||
|
||||
- **TypeError** - `x` 不是Tensor。
|
||||
|
|
|
@ -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` 。
|
||||
|
|
|
@ -21,4 +21,6 @@
|
|||
|
||||
**异常:**
|
||||
|
||||
- **TypeError** - 如果 `x` 和 `y` 不是数值型、bool或Tensor。
|
||||
- **TypeError** - 如果 `x` 和 `y` 不是数值型、bool或Tensor。
|
||||
- **TypeError** - 如果 `x` 和 `y` 的数据类型不是float16、float32或float64。
|
||||
- **TypeError** - 如果 `x` 不能广播到与 `y` 的shape一致。
|
||||
|
|
Loading…
Reference in New Issue