| 944 | return self.leakyrelu(input) |
| 945 | |
| 946 | class LeakyReLU1(Module): |
| 947 | def forward(self, input): |
| 948 | return torch.nn.functional.leaky_relu(input, 0.02) |
| 949 | |
| 950 | class LeakyReLU2(Module): |
| 951 | def forward(self, input): |
no outgoing calls
searching dependent graphs…