File size: 1,892 Bytes
13621bf | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | python -m cleanrl.submit_exp --exp-script offline_dqn_cql_atari_visual.sh \
--algo offline_dqn_cql_atari_visual.py \
--total-timesteps 10000000 \
--env-ids BeamRiderNoFrameskip-v4 QbertNoFrameskip-v4 SpaceInvadersNoFrameskip-v4 PongNoFrameskip-v4 BreakoutNoFrameskip-v4 \
--wandb-project-name cleanrl.benchmark \
--other-args "--wandb-entity cleanrl --cuda True" \
--job-queue cleanrl_gpu_large_memory \
--job-definition cleanrl \
--num-seed 2 \
--num-vcpu 16 \
--num-gpu 1 \
--num-memory 63000 \
--num-hours 48.0 \
--submit-aws $SUBMIT_AWS
python ppg_procgen_impala_cnn.py --env-id starpilot --capture_video --track --wandb-entity cleanrl --wandb-project cleanrl.benchmark --seed 1
python -m cleanrl.utils.submit_exp --exp-script ppo.sh \
--algo ppo.py \
--total-timesteps 100000 \
--env-ids CartPole-v0 \
--wandb-project-name cleanrl \
--other-args "--wandb-entity cleanrl --cuda True" \
--job-queue gpu \
--job-definition cleanrl \
--num-seed 1 \
--num-vcpu 1 \
--num-gpu 1 \
--num-memory 13000 \
--num-hours 48.0 \
--submit-aws $SUBMIT_AWS
python -m cleanrl.utils.submit_exp --exp-script ppo.sh \
--algo ppo.py \
--total-timesteps 100000 \
--env-ids CartPole-v0 \
--wandb-project-name cleanrl \
--other-args "--wandb-entity cleanrl --cuda True" \
--job-queue cpu \
--job-definition cleanrl \
--num-seed 1 \
--num-vcpu 1 \
--num-memory 2000 \
--num-hours 48.0 \
--submit-aws $SUBMIT_AWS
python -m cleanrl.utils.submit_exp --exp-script ppo.sh \
--algo ppo.py \
--other-args "--env-id CartPole-v0 --wandb-project-name cleanrl --total-timesteps 100000 --wandb-entity cleanrl --cuda True" \
--job-queue cpu \
--job-definition cleanrl \
--num-seed 1 \
--num-vcpu 1 \
--num-memory 2000 \
--num-hours 48.0 \ |