>>> m = nn.LeakyReLU(0.1) >>> input = torch.randn(2) >>> output = m(input) r-