(self)
| 125 | return DataLoader(self.mnist_train, batch_size=self.batch_size) |
| 126 | |
| 127 | def val_dataloader(self): |
| 128 | return DataLoader(self.mnist_val, batch_size=self.batch_size) |
| 129 | |
| 130 | |
| 131 | def run_training_job(): |
nothing calls this directly
no outgoing calls
no test coverage detected