(self, data_source)
| 44 | """ |
| 45 | |
| 46 | def __init__(self, data_source): |
| 47 | self.data_source = data_source |
| 48 | |
| 49 | def __iter__(self): |
| 50 | return iter(torch.randperm(len(self.data_source)).long()) |
nothing calls this directly
no outgoing calls
no test coverage detected