MCPcopy Create free account
hub / github.com/MotrixLab/ViMoGen / _motion_candidates

Method _motion_candidates

mbench/__init__.py:91–96  ·  view source on GitHub ↗

Return ordered candidate motion file paths to probe.

(self, evaluation_path: Path, motion_id: int)

Source from the content-addressed store, hash-verified

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."""

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected