(self, *datasets)
| 366 | |
| 367 | class ConcatDataset(Dataset): |
| 368 | def __init__(self, *datasets): |
| 369 | self.datasets = datasets |
| 370 | |
| 371 | def __getitem__(self, idx): |
| 372 | return tuple(d[idx] for d in self.datasets) |
nothing calls this directly
no outgoing calls
no test coverage detected