Check if this dataloader has checkpoint tracking enabled and has progress.
(self)
| 404 | return False |
| 405 | |
| 406 | def has_checkpoint(self) -> bool: |
| 407 | """Check if this dataloader has checkpoint tracking enabled and has progress.""" |
| 408 | if self.checkpoint_manager: |
| 409 | return self.checkpoint_manager.get_progress(self.name) is not None |
| 410 | return False |
| 411 | |
| 412 | def is_empty(self) -> bool: |
| 413 | """Check if there are no items to process.""" |
no test coverage detected