(self, step)
| 51 | self.start_index = 0 |
| 52 | |
| 53 | def state_dict(self, step) -> dict: |
| 54 | return {'start_index': step} |
| 55 | |
| 56 | def load_state_dict(self, state_dict: dict) -> None: |
| 57 | self.__dict__.update(state_dict) |
nothing calls this directly
no outgoing calls
no test coverage detected