MCPcopy Create free account
hub / github.com/WorldModelBench-Team/WorldModelBench / __init__

Method __init__

evaluation.py:117–122  ·  view source on GitHub ↗
(self, judge_path: str, video_dir: str, config: EvaluationConfig)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 2

_load_judgeMethod · 0.95
ResultsPrinterClass · 0.85

Tested by

no test coverage detected