(self, batch, batch_idx)
| 22 | self.save_hyperparameters() |
| 23 | |
| 24 | def common_step(self, batch, batch_idx): |
| 25 | images, _, labels, _ = batch |
| 26 | output = self.model(images) |
| 27 | return self.criterion(output, labels), output |
| 28 | |
| 29 | def forward(self, images): |
| 30 | return self.model(images) |
no outgoing calls