(self)
| 122 | return self.n |
| 123 | |
| 124 | def __iter__(self): |
| 125 | # return a copy, so that the iteration number doesn't collide |
| 126 | return TestIterator(self.n, self.batch_size, self.dims, self.as_tensor) |
| 127 | |
| 128 | def __next__(self): |
| 129 | random_seed(12345 * self.i + 4321) |
nothing calls this directly
no test coverage detected