-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun_figure17ac.sh
77 lines (66 loc) · 2.95 KB
/
run_figure17ac.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
75
76
77
#!/bin/bash
# caltech_birds2011
python3 profiler.py --model_name resnet50 \
--num_classes 200
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type elastic_training \
--run_name CUB200_ElasticTrainer_035 \
--rho 0.367 \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type elastic_training \
--run_name CUB200_ElasticTrainer_040 \
--rho 0.4 \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type elastic_training \
--run_name CUB200_ElasticTrainer_050 \
--rho 0.533 \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type elastic_training \
--run_name CUB200_ElasticTrainer_060 \
--rho 0.6 \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type elastic_training \
--run_name CUB200_ElasticTrainer_070 \
--rho 0.7 \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type full_training \
--run_name CUB200_Full_training \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type traditional_tl_training \
--run_name CUB200_Traditional_TL \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type bn_plus_bias_training \
--run_name CUB200_BN+Bias \
--save_txt True
python3 main.py --model_name resnet50 \
--dataset_name caltech_birds2011 \
--train_type prunetrain \
--run_name CUB200_PruneTrain \
--save_txt True
python3 plot_bars_v1.py --path_to_rho35 CUB200_ElasticTrainer_035 \
--path_to_rho40 CUB200_ElasticTrainer_040 \
--path_to_rho50 CUB200_ElasticTrainer_050 \
--path_to_rho60 CUB200_ElasticTrainer_060 \
--path_to_rho70 CUB200_ElasticTrainer_070 \
--path_to_full_training CUB200_Full_training \
--path_to_traditional_tl CUB200_Traditional_TL \
--path_to_bn_plus_bias CUB200_BN+Bias \
--path_to_prunetrain CUB200_PruneTrain \
--figure_id 1 \
--figure_name Figure_17_ac.pdf \
--ego False