(self)
| 337 | self.data, self.bs, self.shuffle = data, batch_size, shuffle |
| 338 | |
| 339 | def __len__(self) -> int: |
| 340 | return len(self.data) |
| 341 | |
| 342 | def __iter__(self): |
| 343 | return iter(sortish_sampler_indices(self.data, self.bs, shuffle=self.shuffle)) |
nothing calls this directly
no outgoing calls
no test coverage detected