(self)
| 23 | return (self.indices[i] for i in torch.randperm(len(self.indices))) |
| 24 | |
| 25 | def __len__(self): |
| 26 | return len(self.indices) |
| 27 | |
| 28 | def set_epoch(self, epoch): |
| 29 | self.epoch = epoch |
nothing calls this directly
no outgoing calls
no test coverage detected