Get the Arrow file path (single file for all processes)
(self)
| 308 | os.makedirs(self.dstore_dir, exist_ok=True) |
| 309 | |
| 310 | def _get_arrow_file_path(self): |
| 311 | """Get the Arrow file path (single file for all processes)""" |
| 312 | base_path = get_dstore_path(self.dstore_dir, self.model.config.model_type, self.eval_subset, self.dimension) |
| 313 | return base_path |
| 314 | |
| 315 | def _setup_arrow_writer(self): |
| 316 | """Set up the Arrow writer for streaming writes (only on main process)""" |
no test coverage detected