(self, idx)
| 16 | class ExampleDataset(Dataset): |
| 17 | |
| 18 | def __getitem__(self, idx): |
| 19 | results = dict(img=torch.tensor([1]), img_metas=dict()) |
| 20 | return results |
| 21 | |
| 22 | def __len__(self): |
| 23 | return 1 |
nothing calls this directly
no outgoing calls
no test coverage detected