Check if this dataloader has been fully processed.
(self)
| 398 | ) |
| 399 | |
| 400 | def is_completed(self) -> bool: |
| 401 | """Check if this dataloader has been fully processed.""" |
| 402 | if self.checkpoint_manager: |
| 403 | return self.checkpoint_manager.is_completed(self.name) |
| 404 | return False |
| 405 | |
| 406 | def has_checkpoint(self) -> bool: |
| 407 | """Check if this dataloader has checkpoint tracking enabled and has progress.""" |
nothing calls this directly
no outgoing calls
no test coverage detected