(self, input_tensor)
| 480 | |
| 481 | class CustomSwish(nn.Module): |
| 482 | def forward(self, input_tensor): |
| 483 | return Swish.apply(input_tensor) |
| 484 | |
| 485 | |
| 486 | class TransformerFFNLayer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected