Rate this Page
★★★★★
LeakyReLU#
- classtorch.nn.modules.activation.LeakyReLU(negative_slope=0.01,inplace=False)[source]#
Applies the LeakyReLU function element-wise.
or
- Parameters
- Shape:
Input: where* means, any number of additionaldimensions
Output:, same shape as the input

Examples:
>>>m=nn.LeakyReLU(0.1)>>>input=torch.randn(2)>>>output=m(input)
On this page