(self, input, cond)
| 292 | self.skip = skip if skip else nn.Identity() |
| 293 | |
| 294 | def forward(self, input, cond): |
| 295 | skip = self.skip(input, cond) if isinstance(self.skip, ConditionedModule) else self.skip(input) |
| 296 | return self.main(input, cond) + skip |
| 297 | |
| 298 | |
| 299 | class AdaGN(ConditionedModule): |
nothing calls this directly
no outgoing calls
no test coverage detected