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

Function get_default_question_pool

evaluation.py:52–67  ·  view source on GitHub ↗

Factory function for default question pool.

()

Source from the content-addressed store, hash-verified

50
51
52def get_default_question_pool() -> Dict[str, Optional[List[str]]]:
53 """Factory function for default question pool."""
54 return {
55 EvaluationType.INSTRUCTION.value: None,
56 EvaluationType.PHYSICAL_LAWS.value: [
57 "Violation of Newton's Law: Objects move without any external force.",
58 "Violation of the Law of Conservation of Mass or Solid Constitutive Law: Objects deform irregularly.",
59 "Violation of Fluid Constitutive Law: Liquids flow in an unnatural manner.",
60 "Violation of Non-physical Penetration: Objects unnaturally pass through each other.",
61 "Violation of Gravity: Objects behave inconsistently with gravity.",
62 ],
63 EvaluationType.COMMON_SENSE.value: [
64 "Poor Aesthetics: Visually unappealing or low-quality content.",
65 "Temporal Inconsistency: Noticeable flickering or abrupt changes.",
66 ],
67 }
68
69
70@dataclass

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected