(self, x)
| 78 | self.downsample.weight.data.normal_(0, 0.01) |
| 79 | |
| 80 | def forward(self, x): |
| 81 | out = self.net(x) |
| 82 | res = x if self.downsample is None else self.downsample(x) |
| 83 | return self.relu(out + res) |
| 84 | |
| 85 | |
| 86 | class _TemporalConvNet(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected