(self)
| 340 | return len(self.data) |
| 341 | |
| 342 | def __iter__(self): |
| 343 | return iter(sortish_sampler_indices(self.data, self.bs, shuffle=self.shuffle)) |
| 344 | |
| 345 | |
| 346 | def sortish_sampler_indices(data: List, bs: int, shuffle=True) -> np.array: |
nothing calls this directly
no test coverage detected