(self, x)
| 92 | self.downsample.weight.data.normal_(0, 0.01) |
| 93 | |
| 94 | def forward(self, x): |
| 95 | out = self.net(x) |
| 96 | res = x if self.downsample is None else self.downsample(x) |
| 97 | return self.relu(out + res) |
| 98 | |
| 99 | |
| 100 | class _TemporalConvNet(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected