-
Notifications
You must be signed in to change notification settings - Fork 1
/
gen_white_box.sh
63 lines (40 loc) · 7.58 KB
/
gen_white_box.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset CIFAR-10 --adv_arch conv3 --shot 5 --gpu 1 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset CIFAR-10 --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset SVHN --adv_arch conv3 --shot 1 --gpu 5 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset SVHN --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset MNIST --adv_arch conv3 --shot 5 --gpu 1 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset MNIST --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset F-MNIST --adv_arch conv3 --shot 5 --gpu 1 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector MetaAdvDet --dataset F-MNIST --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector DNN --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector RotateDet --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset CIFAR-10 --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset SVHN --adv_arch conv3 --shot 5 --gpu 2 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 0 --attack CW_L2 --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &
nohup python white_box_attack/generate_white_box_attack.py --detector NeuralFP --dataset F-MNIST --adv_arch conv3 --shot 1 --gpu 2 --attack FGSM --protocol TRAIN_ALL_TEST_ALL > /dev/null 2>&1 &