File size: 217 Bytes
f6d8768 | 1 2 3 4 5 6 7 8 9 10 | #!/usr/bin/env bash
set -euo pipefail
export PYTHONPATH="${PYTHONPATH:-}:$(pwd)/src"
python3.11 src/minidreamer/baselines/train_ppo.py \
--config configs/fourrooms_ppo.yaml \
--output-dir artifacts/ppo \
"$@"
|