(self, stage=None)
| 358 | self._eval_dataset = None |
| 359 | |
| 360 | def setup(self, stage=None): |
| 361 | if self._train_dataset is None: |
| 362 | self._train_dataset, self._eval_dataset = load_dataset(self.cfg) |
| 363 | |
| 364 | def train_dataloader(self): |
| 365 | # Lightning attaches the DistributedSampler when strategy=ddp. |
nothing calls this directly
no test coverage detected