(self, x)
| 38 | |
| 39 | |
| 40 | def forward(self, x): |
| 41 | x = self.features(x) |
| 42 | x = self.avgpool(x) |
| 43 | x = torch.flatten(x, 1) |
| 44 | x = self.classifier(x) |
| 45 | return x |
| 46 | |
| 47 | |
| 48 | def make_layers(cfg, in_dims=3, batch_norm=False): |
nothing calls this directly
no outgoing calls
no test coverage detected