(self, x)
| 191 | self.conv2 = Conv1d1x1(out_channels, out_channels, bias) |
| 192 | |
| 193 | def forward(self, x): |
| 194 | y = self.conv1(self.activation(x)) |
| 195 | y = self.conv2(self.activation(y)) |
| 196 | return x + y |
| 197 | |
| 198 | |
| 199 | class CausalResUnit(NonCausalResUnit): |
nothing calls this directly
no outgoing calls
no test coverage detected