-
Notifications
You must be signed in to change notification settings - Fork 750
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fb08df7
commit 6e8fdde
Showing
4 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ activation | |
:maxdepth: 1 | ||
|
||
activation/Hardshrink.rst | ||
activation/Tanh.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.. THIS FILE IS GENERATED BY `gen_doc.{py|sh}` | ||
!DO NOT EDIT THIS FILE MANUALLY! | ||
.. _api_nn_activation_Tanh: | ||
|
||
Tanh | ||
--------- | ||
|
||
.. autoclass:: paddle.nn.activation.Tanh | ||
:members: | ||
:inherited-members: | ||
:noindex: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
.. _cn_api_nn_Tanh: | ||
|
||
Tanh | ||
------------------------------- | ||
.. py:class:: paddle.nn.Tanh(name=None) | ||
Tanh激活层 | ||
|
||
.. math:: | ||
Tanh(x) = \frac{e^{x} - e^{-x}}{e^{x} + e^{-x}} | ||
参数 | ||
:::::::::: | ||
- name (str, 可选) - 操作的名称(可选,默认值为None)。更多信息请参见 :ref:`api_guide_Name`。 | ||
|
||
形状: | ||
- input: 任意形状的Tensor。 | ||
- output: 和input具有相同形状的Tensor。 | ||
|
||
代码示例 | ||
::::::::: | ||
|
||
.. code-block:: python | ||
import paddle | ||
import numpy as np | ||
paddle.disable_static() | ||
x = paddle.to_tensor(np.array([-0.4, -0.2, 0.1, 0.3])) | ||
m = paddle.nn.Tanh() | ||
out = m(x) | ||
print(out.numpy()) | ||
# [-0.37994896 -0.19737532 0.09966799 0.29131261] |