-
Notifications
You must be signed in to change notification settings - Fork 7
/
test.sh
40 lines (25 loc) · 2.79 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Test Adversarial Models
# (STANDART : FGSM)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 1 --load_dir "model_chkpt_new/chkpt_plain/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 1 --gpu "1,3"
# (STANDART : PGD20)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 20 --load_dir "model_chkpt_new/chkpt_plain/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 2 --gpu "1,3"
# (STANDART : PGD100)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 100 --load_dir "model_chkpt_new/chkpt_plain/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 3 --gpu "1,3"
# (STANDART : MIM)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 20 --adv_momentum 1.0 --load_dir "model_chkpt_new/chkpt_plain/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 4 --gpu "1,3"
# (PGD7 : FGSM)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 1 --load_dir "model_chkpt_new/chkpt_pgd7/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 5 --gpu "1,3"
# (PGD7 : PGD20)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 20 --load_dir "model_chkpt_new/chkpt_pgd7/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 6 --gpu "1,3"
# (PGD7 : PGD100)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 100 --load_dir "model_chkpt_new/chkpt_pgd7/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 7 --gpu "1,3"
# (PGD7 : MIM)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 20 --adv_momentum 1.0 --load_dir "model_chkpt_new/chkpt_pgd7/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 8 --gpu "1,3"
# (FGSM : FGSM)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 1 --load_dir "model_chkpt_new/chkpt_pgd1/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 9 --gpu "1,3"
# (FGSM : PGD20)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 20 --load_dir "model_chkpt_new/chkpt_pgd1/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 10 --gpu "1,3"
# (FGSM : PGD100)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 100 --load_dir "model_chkpt_new/chkpt_pgd1/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 11 --gpu "1,3"
# (FGSM : MIM)
python train.py --mode 1 --att 1 --train_mode 0 --test_mode 1 --train_max_iter 0 --test_max_iter 20 --adv_momentum 1.0 --load_dir "model_chkpt_new/chkpt_pgd1/" --load_adv_dir "model_chkpt_new/chkpt_plain/" --save_idx 12 --gpu "1,3"