File size: 475 Bytes
2813fc8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 | #!/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()
|