On this page
Tanh
class torch.nn.Tanh(*args, **kwargs)
[source]-
Applies the Hyperbolic Tangent (Tanh) function element-wise.
Tanh is defined as:
- Shape:
-
- Input: , where means any number of dimensions.
- Output: , same shape as the input.
Examples:
>>> m = nn.Tanh() >>> input = torch.randn(2) >>> output = m(input)
© 2024, PyTorch Contributors
PyTorch has a BSD-style license, as found in the LICENSE file.
https://pytorch.org/docs/2.1/generated/torch.nn.Tanh.html