-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathr2kd_train.sh
76 lines (35 loc) · 3.25 KB
/
r2kd_train.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
63
64
65
66
67
68
69
70
71
72
73
74
# cutout
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/wrn40_2_wrn16_2.yaml --pruning -a cutout
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res56_res20.yaml --pruning -a cutout
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_res8x4.yaml --pruning -a cutout
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_vgg8.yaml --pruning -a cutout
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_mv2.yaml --pruning -a cutout
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_shuv2.yaml --pruning -a cutout
# autoaug
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/wrn40_2_wrn16_2.yaml --pruning -a autoaug
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res56_res20.yaml --pruning -a autoaug
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_res8x4.yaml --pruning -a autoaug
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_vgg8.yaml --pruning -a autoaug
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_mv2.yaml --pruning -a autoaug
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_shuv2.yaml --pruning -a autoaug
# mixup
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/wrn40_2_wrn16_2.yaml --pruning -a mixup
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res56_res20.yaml --pruning -a mixup
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_res8x4.yaml --pruning -a mixup
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_vgg8.yaml --pruning -a mixup
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_mv2.yaml --pruning -a mixup
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_shuv2.yaml --pruning -a mixup
# cutmix
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/wrn40_2_wrn16_2.yaml --pruning -a cutmix
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res56_res20.yaml --pruning -a cutmix
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_res8x4.yaml --pruning -a cutmix
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_vgg8.yaml --pruning -a cutmix
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_mv2.yaml --pruning -a cutmix
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_shuv2.yaml --pruning -a cutmix
# cutmixpick
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/wrn40_2_wrn16_2.yaml --pruning -a cutmixpick
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res56_res20.yaml --pruning -a cutmixpick
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_res8x4.yaml --pruning -a cutmixpick
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_vgg8.yaml --pruning -a cutmixpick
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/vgg13_mv2.yaml --pruning -a cutmixpick
CUDA_VISIBLE_DEVICES=0 python tools/train.py --cfg configs/tiny/r2kd/res32x4_shuv2.yaml --pruning -a cutmixpick