(self, images)
| 27 | return self.criterion(output, labels), output |
| 28 | |
| 29 | def forward(self, images): |
| 30 | return self.model(images) |
| 31 | |
| 32 | def training_step(self, batch, batch_idx): |
| 33 | loss, output = self.common_step(batch, batch_idx) |
nothing calls this directly
no outgoing calls
no test coverage detected