(self, epoch, path_prefix=None, path_type=None)
| 488 | path_type=path_type) |
| 489 | |
| 490 | def load(self, epoch, path_prefix=None, path_type=None): |
| 491 | return self._task_group( |
| 492 | CheckpointManager.load, |
| 493 | epoch, |
| 494 | path_prefix=path_prefix, |
| 495 | path_type=path_type) |
| 496 | |
| 497 | def load_blobs_locally(self, nodes, blob_names, epoch, session): |
| 498 | """Loads the necessary blobs from the checkpoints to the current node. |
nothing calls this directly
no test coverage detected