ma_cisco_malware/test.sh

20 lines
507 B
Bash
Raw Normal View History

#!/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