2017-08-05 09:33:07 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
2017-09-02 12:58:48 +02:00
|
|
|
for output in client both
|
|
|
|
do
|
|
|
|
for depth in small medium
|
|
|
|
do
|
|
|
|
for mtype in inter final staggered
|
|
|
|
do
|
|
|
|
|
|
|
|
python main.py --mode test --batch 1024 \
|
|
|
|
--model /tmp/rk/results/${output}_${depth}_${mtype} \
|
|
|
|
--test /tmp/rk/futureData.csv \
|
|
|
|
--model_output ${output} \
|
|
|
|
--type ${mtype} \
|
|
|
|
--depth ${depth}
|
|
|
|
done
|
|
|
|
done
|
|
|
|
done
|