(self, x, y, transform=None, fitr=None)
| 32 | |
| 33 | class Dataset(): |
| 34 | def __init__(self, x, y, transform=None, fitr=None): |
| 35 | self.x = x |
| 36 | self.y = y |
| 37 | self.transform = transform |
| 38 | self.fitr = fitr |
| 39 | |
| 40 | def __getitem__(self, idx): |
| 41 | x, y = self.x[idx], self.y[idx] |
nothing calls this directly
no outgoing calls
no test coverage detected