| 854 | return self.ht(input) |
| 855 | |
| 856 | class Hardtanh2(torch.nn.Module): |
| 857 | def forward(self, input): |
| 858 | return torch.nn.functional.hardtanh(input) |
| 859 | |
| 860 | class Hardtanh3(torch.nn.Module): |
| 861 | def forward(self, input): |
no outgoing calls
searching dependent graphs…