There was an error while loading. Please reload this page.
1 parent 578ecdf commit c842a9dCopy full SHA for c842a9d
1 file changed
logic/pve/official_evaluator.py
@@ -52,7 +52,6 @@ def _smooth_score(score: float, scale: float = 1000.0) -> float:
52
z = math.tanh(score / scale)
53
return 1.0 / (1.0 + math.exp(-z))
54
55
-
56
def load_agent(submission_dir: str, model_path: Optional[str], env: GameEnvironment) -> BaseAgent:
57
"""
58
Dynamically load contestant's Agent class from submission_dir/agent.py.
0 commit comments