(self, stage)
| 36 | self.dataset_configs['test'] = test |
| 37 | |
| 38 | def setup(self, stage): |
| 39 | |
| 40 | if stage in ['fit']: |
| 41 | self.datasets = dict((k, instantiate_from_config(self.dataset_configs[k])) for k in self.dataset_configs) |
| 42 | else: |
| 43 | raise NotImplementedError |
| 44 | |
| 45 | def train_dataloader(self): |
| 46 |
nothing calls this directly
no test coverage detected