2017-09-07 15:31:04 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2017-10-09 14:19:01 +02:00
|
|
|
N1=$1
|
|
|
|
N2=$2
|
|
|
|
RESDIR=$3
|
|
|
|
DATADIR=$4
|
2017-09-07 15:31:04 +02:00
|
|
|
|
2017-10-19 17:39:37 +02:00
|
|
|
#for ((i = ${N1}; i <= ${N2}; i++))
|
|
|
|
#do
|
|
|
|
# python3 main.py --mode fancy --batch 1024 --model ${RESDIR}/client_final_${i} --data ${DATADIR} --model_output client
|
|
|
|
# python3 main.py --mode fancy --batch 1024 --model ${RESDIR}/both_final_${i} --data ${DATADIR} --model_output both
|
|
|
|
# python3 main.py --mode fancy --batch 1024 --model ${RESDIR}/both_inter_${i} --data ${DATADIR} --model_output both
|
|
|
|
# python3 main.py --mode fancy --batch 1024 --model ${RESDIR}/both_staggered_${i} --data ${DATADIR} --model_output both
|
|
|
|
#done
|
|
|
|
#
|
|
|
|
#python3 main.py --mode all_fancy --batch 1024 --models ${RESDIR}/client_final_{1..20}/ --data ${DATADIR} --model_output client --out-prefix ${RESDIR}/client_final
|
|
|
|
#python3 main.py --mode all_fancy --batch 1024 --models ${RESDIR}/both_final_{1..20}/ --data ${DATADIR} --model_output both --out-prefix ${RESDIR}/both_final
|
|
|
|
#python3 main.py --mode all_fancy --batch 1024 --models ${RESDIR}/both_inter_{1..20}/ --data ${DATADIR} --model_output both --out-prefix ${RESDIR}/both_inter
|
|
|
|
#python3 main.py --mode all_fancy --batch 1024 --models ${RESDIR}/both_staggered_{1..20}/ --data ${DATADIR} --model_output both --out-prefix ${RESDIR}/both_staggered
|
2017-09-07 15:31:04 +02:00
|
|
|
|
2017-10-19 17:39:37 +02:00
|
|
|
#python3 main.py --mode beta --batch 1024 --models ${RESDIR}/client_final_{1..20}/ --data ${DATADIR} --model_output client --out-prefix ${RESDIR}/client_final
|
|
|
|
#python3 main.py --mode beta --batch 1024 --models ${RESDIR}/both_final_{1..20}/ --data ${DATADIR} --model_output both --out-prefix ${RESDIR}/both_final
|
|
|
|
#python3 main.py --mode beta --batch 1024 --models ${RESDIR}/both_inter_{1..20}/ --data ${DATADIR} --model_output both --out-prefix ${RESDIR}/both_inter
|
|
|
|
#python3 main.py --mode beta --batch 1024 --models ${RESDIR}/both_staggered_{1..20}/ --data ${DATADIR} --model_output both --out-prefix ${RESDIR}/both_staggered
|
|
|
|
#python3 main.py --mode all_beta --out-prefix ${RESDIR}/both_staggered
|
2017-09-07 15:31:04 +02:00
|
|
|
|
2017-10-19 17:39:37 +02:00
|
|
|
python3 main.py --mode embedding --batch 1024 --models ${RESDIR}/client_final_{1..20}/ ${RESDIR}/both_final_{1..20}/ \
|
|
|
|
${RESDIR}/both_inter_{1..20}/ ${RESDIR}/both_staggered_{1..20}/ \
|
|
|
|
--data ${DATADIR} \
|
2017-11-04 12:47:08 +01:00
|
|
|
--out-prefix ${RESDIR}/figs/svd/svd
|