(self)
| 158 | self.idx = 0 |
| 159 | |
| 160 | def __iter__(self): |
| 161 | return SampleIterator(iter(self.src), self.is_multioutput) |
| 162 | |
| 163 | def __next__(self): |
| 164 | batch_size = len(self.batch[0]) if self.is_multioutput else len(self.batch) |
nothing calls this directly
no test coverage detected