-
Notifications
You must be signed in to change notification settings - Fork 4
/
train.sh
66 lines (56 loc) · 1.71 KB
/
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
echo "Creating masks..."
python create_masks.py
echo "Masks created"
echo "training seresnext50 localization model with seeds 0-2"
python train50_loc.py 0
python train50_loc.py 1
python train50_loc.py 2
python tune50_loc.py 0
python tune50_loc.py 1
python tune50_loc.py 2
echo "training dpn92 localization model with seeds 0-2"
python train92_loc.py 0
python train92_loc.py 1
python train92_loc.py 2
python tune92_loc.py 0
python tune92_loc.py 1
python tune92_loc.py 2
echo "training senet154 localization model with seeds 0-2"
python train154_loc.py 0
python train154_loc.py 1
python train154_loc.py 2
echo "training resnet34 localization model with seeds 0-2"
python train34_loc.py 0
python train34_loc.py 1
python train34_loc.py 2
echo "predicting localization models on validation subset for seeds 0-2"
python predict_loc_val.py
echo "training seresnext50 classification model with seeds 0-2"
python train50_cls_cce.py 0
python train50_cls_cce.py 1
python train50_cls_cce.py 2
python tune50_cls_cce.py 0
python tune50_cls_cce.py 1
python tune50_cls_cce.py 2
echo "training dpn92 classification model with seeds 0-2"
python train92_cls_cce.py 0
python train92_cls_cce.py 1
python train92_cls_cce.py 2
python tune92_cls_cce.py 0
python tune92_cls_cce.py 1
python tune92_cls_cce.py 2
echo "training resnet34 classification model with seeds 0-2"
python train34_cls.py 0
python train34_cls.py 1
python train34_cls.py 2
python tune34_cls.py 0
python tune34_cls.py 1
python tune34_cls.py 2
echo "training senet154 classification model with seeds 0-2"
python train154_cls_cce.py 0
python train154_cls_cce.py 1
python train154_cls_cce.py 2
python tune154_cls_cce.py 0
python tune154_cls_cce.py 1
python tune154_cls_cce.py 2
echo "All models trained!"