(self, x)
| 42 | self.conv.bias.data.zero_() |
| 43 | |
| 44 | def forward(self, x): |
| 45 | x = self.conv(x) |
| 46 | |
| 47 | x = self.scale_init * x |
| 48 | |
| 49 | x = torch.sin(x) |
| 50 | |
| 51 | return x |
| 52 | |
| 53 | |
| 54 | class LinearWN_v2(torch.nn.Linear): |
nothing calls this directly
no outgoing calls
no test coverage detected