(self, ds)
| 179 | """ |
| 180 | |
| 181 | def __init__(self, ds): |
| 182 | self.wrapped_data = ds |
| 183 | self.index_mapping = np.random.permutation(np.arange(len(ds))) |
| 184 | |
| 185 | def __len__(self): |
| 186 | return len(self.wrapped_data) |
nothing calls this directly
no outgoing calls
no test coverage detected