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