(self,x)
| 6 | |
| 7 | class Swish(nn.Module): |
| 8 | def forward(self,x): |
| 9 | return x * torch.sigmoid(x) |
| 10 | |
| 11 | class SharedMLP(nn.Module): |
| 12 | def __init__(self, in_channels, out_channels, dim=1): |
nothing calls this directly
no outgoing calls
no test coverage detected