tanh_shrink_cn.rst 631 字节
Newer Older
H
Hao Wang 已提交
1 2 3 4 5 6 7
.. _cn_api_fluid_layers_tanh_shrink:

tanh_shrink
-------------------------------

.. py:function:: paddle.fluid.layers.tanh_shrink(x, name=None)

8
tanh_shrink激活函数
H
Hao Wang 已提交
9 10 11 12 13 14 15

.. math::
    out = x - \frac{e^{x} - e^{-x}}{e^{x} + e^{-x}}

参数:

    - **x** - TanhShrink算子的输入
16
    - **name** (str|None) - 该层名称(可选)。若设为None,则自动为该层命名。
H
Hao Wang 已提交
17

18 19 20
返回: 张量(Tensor)

返回类型: 变量(Variable)
H
Hao Wang 已提交
21 22 23 24 25

**代码示例**:

.. code-block:: python

26 27 28
    import paddle.fluid as fluid
    data = fluid.layers.data(name="input", shape=[32, 784])
    result = fluid.layers.tanh_shrink(data)
H
Hao Wang 已提交
29 30 31 32 33 34 35 36 37