(self, x)
| 148 | ) |
| 149 | |
| 150 | def forward(self, x): |
| 151 | x = self.features(x) |
| 152 | x = torch.flatten(x, 1) |
| 153 | x = self.classifier(x) |
| 154 | return x |
| 155 | |
| 156 | ###################################################################### |
| 157 | # We employ 2 functions to help us produce and evaluate the results on our original classification task. |
nothing calls this directly
no outgoing calls
no test coverage detected