12 lines
151 B
Bash
Executable File
12 lines
151 B
Bash
Executable File
#!/bin/bash
|
|
|
|
for seed in 0 1 2
|
|
do
|
|
python \
|
|
run.py \
|
|
--method tia \
|
|
--configs dmc \
|
|
--task dmc_cartpole_swingup_driving \
|
|
--seed $seed
|
|
done
|