Tianshou/examples/mujoco/run_experiments.sh
ChenDRAG e605bdea94
MuJoCo Benchmark - DDPG, TD3, SAC (#305)
Releasing Tianshou's SOTA benchmark of 9 out of 13 environments from the MuJoCo Gym task suite.
2021-03-07 19:21:02 +08:00

11 lines
234 B
Bash
Executable File

#!/bin/bash
LOGDIR="results"
TASK=$1
echo "Experiments started."
for seed in $(seq 1 10)
do
python mujoco_sac.py --task $TASK --epoch 200 --seed $seed --logdir $LOGDIR > ${TASK}_`date '+%m-%d-%H-%M-%S'`_seed_$seed.txt 2>&1
done