(self, index)
| 27 | return len(self.data) |
| 28 | |
| 29 | def __getitem__(self, index): |
| 30 | return ( |
| 31 | self.data[index], |
| 32 | self.data[index], |
| 33 | 'A cat holding a sign that says hello world', |
| 34 | ) |
| 35 | |
| 36 | dataset = DummyDataset() |
| 37 | train_loader = DataLoader( |
nothing calls this directly
no outgoing calls
no test coverage detected