(self, judge_path: str, video_dir: str, config: EvaluationConfig)
| 115 | """Evaluates world model benchmark videos using VILA model.""" |
| 116 | |
| 117 | def __init__(self, judge_path: str, video_dir: str, config: EvaluationConfig): |
| 118 | self.judge = self._load_judge(judge_path) |
| 119 | self.video_dir = Path(video_dir) |
| 120 | self.config = config |
| 121 | self.logger = logging.getLogger(__name__) |
| 122 | self.printer = ResultsPrinter() |
| 123 | |
| 124 | @staticmethod |
| 125 | def _load_judge(judge_path: str): |
nothing calls this directly
no test coverage detected