(self)
| 48 | return self.num_samples - self.start_index |
| 49 | |
| 50 | def reset(self) -> None: |
| 51 | self.start_index = 0 |
| 52 | |
| 53 | def state_dict(self, step) -> dict: |
| 54 | return {'start_index': step} |
nothing calls this directly
no outgoing calls
no test coverage detected