(self, x)
| 83 | self.layers = nn.Sequential(*layers) |
| 84 | |
| 85 | def forward(self, x): |
| 86 | x = torch.flatten(x, 1) |
| 87 | return self.layers(x) |
| 88 | |
| 89 | |
| 90 | ###################################################################### |
nothing calls this directly
no outgoing calls
no test coverage detected