Tianshou/examples/mujoco/run_experiments.sh
ChenDRAG dd4a01132c
Fix SAC loss explode (#333)
* change SAC action_bound_method to "clip" (tanh is hardcoded in forward)

* docstring update

* modelbase -> modelbased
2021-04-04 17:33:35 +08:00

12 lines
261 B
Bash
Executable File

#!/bin/bash
LOGDIR="results"
TASK=$1
echo "Experiments started."
for seed in $(seq 0 9)
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
echo "Experiments ended."