(self, x)
| 34 | self._initialize_weights() |
| 35 | |
| 36 | def forward(self, x): |
| 37 | x = self.features(x) |
| 38 | x = torch.flatten(x, start_dim = 1) |
| 39 | x = self.classifier(x) |
| 40 | return x |
| 41 | |
| 42 | def _initialize_weights(self): |
| 43 | for m in self.modules(): |
nothing calls this directly
no outgoing calls
no test coverage detected