(self, inputs)
| 32 | self.layers = nn.Sequential(*layers) |
| 33 | |
| 34 | def forward(self, inputs): |
| 35 | if isinstance(inputs, (list, tuple)): |
| 36 | return (self.layers(inputs[0]), *inputs[1:]) |
| 37 | else: |
| 38 | return self.layers(inputs) |
nothing calls this directly
no outgoing calls
no test coverage detected