File size: 196 Bytes
aceb14e | 1 2 3 4 5 6 7 | """Compatibility launcher for the root-level evaluation script."""
import runpy
from pathlib import Path
runpy.run_path(Path(__file__).resolve().parents[1] / "run_eval.py", run_name="__main__")
|
aceb14e | 1 2 3 4 5 6 7 | """Compatibility launcher for the root-level evaluation script."""
import runpy
from pathlib import Path
runpy.run_path(Path(__file__).resolve().parents[1] / "run_eval.py", run_name="__main__")
|