diff --git a/test.sh b/test.sh index 34f8913..8cca744 100644 --- a/test.sh +++ b/test.sh @@ -1,11 +1,19 @@ #!/usr/bin/env bash -python main.py --mode test --batch 1024 --model /tmp/rk/results/small_both --test /tmp/rk/futureData.csv --model_output both --type paul -python main.py --mode test --batch 1024 --model /tmp/rk/results/small_client --test /tmp/rk/futureData.csv --model_output client --type paul -python main.py --mode test --batch 1024 --model /tmp/rk/results/small_new_both --test /tmp/rk/futureData.csv --model_output both --type paul -python main.py --mode test --batch 1024 --model /tmp/rk/results/small_new_client --test /tmp/rk/futureData.csv --model_output client --type paul -python main.py --mode test --batch 1024 --model /tmp/rk/results/medium_both --test /tmp/rk/futureData.csv --model_output both --type rene -python main.py --mode test --batch 1024 --model /tmp/rk/results/medium_client --test /tmp/rk/futureData.csv --model_output client --type rene -python main.py --mode test --batch 1024 --model /tmp/rk/results/medium_new_both --test /tmp/rk/futureData.csv --model_output both --type rene -python main.py --mode test --batch 1024 --model /tmp/rk/results/medium_new_client --test /tmp/rk/futureData.csv --model_output client --type rene \ No newline at end of file +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