#!/usr/bin/env bash 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