BenchCheck-Pool / code /exp /analysis /pool /step1_blind.py
Enxin's picture
Upload code/exp/analysis/pool/step1_blind.py with huggingface_hub
2813fc8 verified
Raw
History Blame Contribute Delete
475 Bytes
#!/usr/bin/env python3
"""TASK.md step 1 (blind) — thin wrapper: pool_steps.py --step 1 (see that module for the
rule, the log-prob extraction and the output row format). Output: exp/results/pool/step1/."""
import os
import sys
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from pool_steps import main # noqa: E402
if __name__ == "__main__":
sys.argv = [sys.argv[0], "--step", "1"] + [x for x in sys.argv[1:] if x not in ("--step", "1")]
main()