File size: 424 Bytes
358dd8b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import subprocess
def test_ppo():
subprocess.run(
"python cleanrl/ppo_procgen.py --num-envs 1 --num-steps 64 --total-timesteps 256 --num-minibatches 2",
shell=True,
check=True,
)
def test_ppg():
subprocess.run(
"python cleanrl/ppg_procgen.py --num-envs 1 --num-steps 64 --total-timesteps 256 --num-minibatches 2 --n-iteration 1",
shell=True,
check=True,
)
|