(self, step)
| 353 | self.start_index = 0 |
| 354 | |
| 355 | def state_dict(self, step) -> dict: |
| 356 | return {'start_index': step} |
| 357 | |
| 358 | def load_state_dict(self, state_dict: dict): |
| 359 | self.start_index = state_dict['start_index'] + 1 |
nothing calls this directly
no outgoing calls
no test coverage detected