-
Notifications
You must be signed in to change notification settings - Fork 2
/
MainAV_nC5.sh
executable file
·17 lines (14 loc) · 971 Bytes
/
MainAV_nC5.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
# Variables
N_EPOCHS=$1
for ARCH in 9 10 11
do
# Main Experiments - 5 candidates, 40 voters
python main.py -f data/spheroid_nC5_nV40_nP100_imC80.profiles -c 5 -v 40 -e $N_EPOCHS -opt Adam -lr 0.001 -tp 0.2 -s 69420 -arch $ARCH
python main.py -f data/cubic_nC5_nV40_nP100_imC80.profiles -c 5 -v 40 -e $N_EPOCHS -opt Adam -lr 0.001 -tp 0.2 -s 69420 -arch $ARCH
python main.py -f data/ladder_nC5_nV40_nP100_imC80.profiles -c 5 -v 40 -e $N_EPOCHS -opt Adam -lr 0.001 -tp 0.2 -s 69420 -arch $ARCH
# Main Experiments - 5 candidates, 80 voters
python main.py -f data/spheroid_nC5_nV80_nP100_imC80.profiles -c 5 -v 80 -e $N_EPOCHS -opt Adam -lr 0.001 -tp 0.2 -s 69420 -arch $ARCH
python main.py -f data/cubic_nC5_nV80_nP100_imC80.profiles -c 5 -v 80 -e $N_EPOCHS -opt Adam -lr 0.001 -tp 0.2 -s 69420 -arch $ARCH
python main.py -f data/ladder_nC5_nV80_nP100_imC80.profiles -c 5 -v 80 -e $N_EPOCHS -opt Adam -lr 0.001 -tp 0.2 -s 69420 -arch $ARCH
done