(self, input, cond=None)
| 272 | self.module = module |
| 273 | |
| 274 | def forward(self, input, cond=None): |
| 275 | return self.module(input) |
| 276 | |
| 277 | |
| 278 | class ConditionedSequential(nn.Sequential, ConditionedModule): |
nothing calls this directly
no outgoing calls
no test coverage detected