File size: 374 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_atari.py --num-envs 1 --num-steps 64 --total-timesteps 256",
shell=True,
check=True,
)
def test_ppo_lstm():
subprocess.run(
"python cleanrl/ppo_atari_lstm.py --num-envs 4 --num-steps 64 --total-timesteps 256",
shell=True,
check=True,
)
|