(self, input)
| 257 | self.skip = skip if skip else nn.Identity() |
| 258 | |
| 259 | def forward(self, input): |
| 260 | return self.main(input) + self.skip(input) |
| 261 | |
| 262 | |
| 263 | # Noise level (and other) conditioning |
nothing calls this directly
no outgoing calls
no test coverage detected