(self, idx)
| 11 | return len(self.dataset) |
| 12 | |
| 13 | def __getitem__(self, idx): |
| 14 | data = self.dataset[self.idx2processnum[idx]] |
| 15 | return data |
| 16 | |
| 17 | class Train_Loader(Loader): |
| 18 | def __init__(self, path): |
nothing calls this directly
no outgoing calls
no test coverage detected