-
Notifications
You must be signed in to change notification settings - Fork 0
/
run_test_4.sh
105 lines (85 loc) · 4.33 KB
/
run_test_4.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
a=0
if [ $a == 1 ]
then
######wflw
printf "********************** NME of heatmap on wflw ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_w18_wflw_256x256.py \
exp/exp_v1.0.9.5/best_NME_epoch_260.pth \
4
printf "********************** end heatmap on wflw ****************************\n"
printf "\n"
######coco
printf "********************** NME of heatmap on coco ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_w18_coco_wholebody_face_256x256.py \
exp/exp_v1.5.4/best_NME_epoch_50.pth \
4
printf "********************** end heatmap on coco ****************************\n"
printf "\n"
######300w
printf "********************** NME of heatmap on 300w ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_w18_300w_256x256.py \
exp/exp_v1.7.4/best_NME_epoch_100.pth \
4
printf "********************** end heatmap on 300w ****************************\n"
printf "\n"
######aflw
printf "********************** NME of heatmap on aflw ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_w18_aflw_256x256.py \
exp/exp_v1.9.4/best_NME_epoch_80.pth \
4
printf "********************** end heatmap on aflw ****************************\n"
printf "\n"
######cofw
printf "********************** NME of heatmap on cofw ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_w18_cofw_256x256.py \
exp/exp_v1.11.4/best_NME_epoch_40.pth \
4
printf "********************** end heatmap on cofw ****************************\n"
printf "\n"
else ##-----------------------------------------dark-pose
######wflw
printf "********************** NME of dark pose on wflw ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/wflw/hrnetv2_w18_wflw_256x256_dark.py \
exp/exp_v1.3.4.2/best_NME_epoch_460.pth \
4
printf "********************** end darkpose on wflw ****************************\n"
printf "\n"
######coco
printf "********************** NME of dark pose on coco ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/coco_wholebody_face/hrnetv2_w18_coco_wholebody_face_256x256_dark.py \
exp/exp_v1.4.4/best_NME_epoch_30.pth \
4
printf "********************** end darkpose on coco ****************************\n"
printf "\n"
######300w
printf "********************** NME of dark pose on 300w ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/300w/hrnetv2_w18_300w_256x256_dark.py \
exp/exp_v1.8.4/best_NME_epoch_50.pth \
4
printf "********************** end darkpose on 300w ****************************\n"
printf "\n"
######aflw
printf "********************** NME of dark pose on aflw ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/aflw/hrnetv2_w18_aflw_256x256_dark.py \
exp/exp_v1.10.4/best_NME_epoch_50.pth \
4
printf "********************** end darkpose on aflw ****************************\n"
printf "\n"
######cofw
printf "********************** NME of dark pose on cofw ****************************\n"
CUDA_VISIBLE_DEVICES=0,1,2,3 sh tools/dist_test.sh \
configs/face/2d_kpt_sview_rgb_img/topdown_heatmap/cofw/hrnetv2_w18_cofw_256x256_dark.py \
exp/exp_v1.12.4/best_NME_epoch_40.pth \
4
printf "********************** end darkpose on cofw ****************************\n"
printf "\n"
fi