Return ordered candidate motion file paths to probe.
(self, evaluation_path: Path, motion_id: int)
| 89 | return mbench_dir |
| 90 | |
| 91 | def _motion_candidates(self, evaluation_path: Path, motion_id: int) -> List[Path]: |
| 92 | """Return ordered candidate motion file paths to probe.""" |
| 93 | candidates = [] |
| 94 | for suffix in (".pt", ".npy"): |
| 95 | candidates.append(evaluation_path / f"{motion_id}{suffix}") |
| 96 | return candidates |
| 97 | |
| 98 | def _video_candidates(self, evaluation_path: Path, motion_id: int) -> List[Path]: |
| 99 | """Return ordered candidate video file paths to probe.""" |
no outgoing calls
no test coverage detected