Rate this Page
โ˜… โ˜… โ˜… โ˜… โ˜…

Tanh#

class torch.nn.Tanh(*args, **kwargs)[source]#

Applies the Hyperbolic Tangent (Tanh) function element-wise.

Tanh is defined as:

Tanh(x)=tanhโก(x)=expโก(x)โˆ’expโก(โˆ’x)expโก(x)+expโก(โˆ’x)\text{Tanh}(x) = \tanh(x) = \frac{\exp(x) - \exp(-x)} {\exp(x) + \exp(-x)}
Shape:
  • Input: (โˆ—)(*), where โˆ—* means any number of dimensions.

  • Output: (โˆ—)(*), same shape as the input.

../_images/Tanh.png

Examples:

>>> m = nn.Tanh()
>>> input = torch.randn(2)
>>> output = m(input)
forward(input)[source]#

Runs the forward pass.

Return type

Tensor