class torch.nn.LeakyReLU(negative_slope: float = 0.01, inplace: bool = False)
[source]
Applies the element-wise function:
or
False
*
means, any number of additional dimensionsExamples:
>>> m = nn.LeakyReLU(0.1) >>> input = torch.randn(2) >>> output = m(input)
© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.7.0/generated/torch.nn.LeakyReLU.html