(cls, base_dir: str)
| 1017 | |
| 1018 | @classmethod |
| 1019 | def checkpoint_steps(cls, base_dir: str) -> list[int]: |
| 1020 | return [parse_step_from_dir(path) for path in cls.checkpoint_paths(base_dir)] |
| 1021 | |
| 1022 | @classmethod |
| 1023 | def cleanup_checkpoint(cls, ckpt_dir: str, *, sync: bool = True): |
no test coverage detected