(self)
| 78 | return self.n |
| 79 | |
| 80 | def __iter__(self): |
| 81 | # return a copy, so that the iteration number doesn't collide |
| 82 | return BBoxDataIterator(self.n, self.batch_size, self.ndim, self.produce_labels) |
| 83 | |
| 84 | def __next__(self): |
| 85 | boxes = [] |
nothing calls this directly
no test coverage detected