(self,x)
| 4 | |
| 5 | class Swish(nn.Module): |
| 6 | def forward(self,x): |
| 7 | return x * torch.sigmoid(x) |
| 8 | class SE3d(nn.Module): |
| 9 | def __init__(self, channel, reduction=8, use_relu=False): |
| 10 | super().__init__() |
nothing calls this directly
no outgoing calls
no test coverage detected