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

torch.nn.functional.leaky_relu#

torch.nn.functional.leaky_relu(input, negative_slope=0.01, inplace=False) โ†’ Tensor[source]#

Applies element-wise, LeakyReLU(x)=maxโก(0,x)+negative_slopeโˆ—minโก(0,x)\text{LeakyReLU}(x) = \max(0, x) + \text{negative\_slope} * \min(0, x)

See LeakyReLU for more details.

Return type

Tensor