(self, batch, batch_idx)
| 30 | return self.model(images) |
| 31 | |
| 32 | def training_step(self, batch, batch_idx): |
| 33 | loss, output = self.common_step(batch, batch_idx) |
| 34 | self.log("train_loss", loss) |
| 35 | return loss |
| 36 | |
| 37 | def validation_step(self, batch, batch_idx): |
| 38 | images, _, labels, _ = batch |
nothing calls this directly
no test coverage detected