-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrun_figure16_ego.sh
47 lines (39 loc) · 1.75 KB
/
run_figure16_ego.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
#!/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
python3 plot_curves.py --x_tag wall_time \
--y_tag test/accuracy \
--single True \
--elastic_trainer_path CUB200_ElasticTrainer \
--figure_id 1 \
--figure_name Figure_16_a_ego.pdf
python3 plot_curves.py --x_tag wall_time \
--y_tag test/classification_loss \
--single True \
--elastic_trainer_path CUB200_ElasticTrainer \
--figure_id 2 \
--figure_name Figure_16_c_ego.pdf
# oxford_iiit_pet
python3 profiler.py --model_name resnet50 \
--num_classes 37
python3 main.py --model_name resnet50 \
--dataset_name oxford_iiit_pet \
--train_type elastic_training \
--run_name PET37_ElasticTrainer
python3 plot_curves.py --x_tag wall_time \
--y_tag test/accuracy \
--single True \
--elastic_trainer_path PET37_ElasticTrainer \
--figure_id 3 \
--figure_name Figure_16_b_ego.pdf
python3 plot_curves.py --x_tag wall_time \
--y_tag test/classification_loss \
--single True \
--elastic_trainer_path PET37_ElasticTrainer \
--figure_id 4 \
--figure_name Figure_16_d_ego.pdf