(self)
| 14 | class DummyDataset(Dataset): |
| 15 | |
| 16 | def __init__(self) -> None: |
| 17 | super().__init__() |
| 18 | data = torch.randn( |
| 19 | 1, |
| 20 | 3, |
| 21 | 1024, |
| 22 | 1024, |
| 23 | ) |
| 24 | self.data = data.expand(100000, -1, -1, -1) |
| 25 | |
| 26 | def __len__(self, ): |
| 27 | return len(self.data) |
nothing calls this directly
no outgoing calls
no test coverage detected