Execute the runner in the configured mode.
(self)
| 83 | save_cfg(save_file) |
| 84 | |
| 85 | def run(self): |
| 86 | """Execute the runner in the configured mode.""" |
| 87 | if self.cache_images_only: |
| 88 | self._run_cache_images() |
| 89 | else: |
| 90 | self._run_pipeline() |
| 91 | |
| 92 | def _run_cache_images(self): |
| 93 | """Cache images only mode: iterate all data and write images to LMDB cache.""" |
no test coverage detected