7 lines
188 B
Shell
Executable file
7 lines
188 B
Shell
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
exec ../../.venv/bin/python ../../scripts/mcts_agent.py ../../ppo_model.eqx \
|
|
--time-budget-ms 125 \
|
|
--max-simulations 128 \
|
|
--rollout-depth 2
|