(self)
| 248 | num_workers=self.num_workers, shuffle=self.shuffle_validation) |
| 249 | |
| 250 | def _test_dataloader(self): |
| 251 | return DataLoader(self.datasets["test"], batch_size=self.val_batch_size, |
| 252 | num_workers=self.num_workers, shuffle=self.shuffle_validation) |
| 253 | |
| 254 | def prepare_data(self): |
| 255 | for data_cfg in self.dataset_configs.values(): |
nothing calls this directly
no outgoing calls
no test coverage detected