| #!/usr/bin/env python3 | |
| """TASK.md step 3 (v32_2b) — thin wrapper: pool_steps.py --step 3 (see that module for the | |
| rule, the log-prob extraction and the output row format). Output: exp/results/pool/step3/.""" | |
| 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", "3"] + [x for x in sys.argv[1:] if x not in ("--step", "3")] | |
| main() | |