RAGEN / cleanrl /tests /test_atari.py
Harryis's picture
Add files using upload-large-folder tool
358dd8b verified
Raw
History Blame Contribute Delete
374 Bytes
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,
)