BenchCheck-Pool / code /exp /analysis /pool /step2_single_frame.py
Enxin's picture
Upload code/exp/analysis/pool/step2_single_frame.py with huggingface_hub
a04120d verified
Raw
History Blame Contribute Delete
482 Bytes
#!/usr/bin/env python3
"""TASK.md step 2 (single_frame) — thin wrapper: pool_steps.py --step 2 (see that module for the
rule, the log-prob extraction and the output row format). Output: exp/results/pool/step2/."""
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", "2"] + [x for x in sys.argv[1:] if x not in ("--step", "2")]
main()