forked from JDAI-CV/FaceX-Zoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
backbone_conf.yaml
158 lines (148 loc) · 2.19 KB
/
backbone_conf.yaml
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
MobileFaceNet:
feat_dim: 512
out_h: 7
out_w: 7
ResNet:
depth: 152
drop_ratio: 0.4
net_mode: ir_se
feat_dim: 512
out_h: 7
out_w: 7
EfficientNet:
width: 1.0
depth: 1.0
image_size: 112
drop_ratio: 0.2
out_h: 7
out_w: 7
feat_dim: 512
HRNet:
NAME: cls_hrnet
out_h: 7
out_w: 7
feat_dim: 512
IMAGE_SIZE:
- 112
- 112
EXTRA:
STAGE1:
NUM_MODULES: 1
NUM_RANCHES: 1
BLOCK: BOTTLENECK
NUM_BLOCKS:
- 4
NUM_CHANNELS:
- 64
FUSE_METHOD: SUM
STAGE2:
NUM_MODULES: 1
NUM_BRANCHES: 2
BLOCK: BASIC
NUM_BLOCKS:
- 4
- 4
NUM_CHANNELS:
- 18
- 36
FUSE_METHOD: SUM
STAGE3:
NUM_MODULES: 4
NUM_BRANCHES: 3
BLOCK: BASIC
NUM_BLOCKS:
- 4
- 4
- 4
NUM_CHANNELS:
- 18
- 36
- 72
FUSE_METHOD: SUM
STAGE4:
NUM_MODULES: 3
NUM_BRANCHES: 4
BLOCK: BASIC
NUM_BLOCKS:
- 4
- 4
- 4
- 4
NUM_CHANNELS:
- 18
- 36
- 72
- 144
FUSE_METHOD: SUM
GhostNet:
width: 1.0
drop_ratio: 0.2
out_h: 7
out_w: 7
feat_dim: 512
AttentionNet:
stage1_modules: 1
stage2_modules: 1
stage3_modules: 1
feat_dim: 512
out_h: 7
out_w: 7
TF-NAS:
feat_dim: 512
drop_ratio: 0.2
out_h: 7
out_w: 7
ResNeSt:
depth: 50
drop_ratio: 0.4
feat_dim: 512
out_h: 7
out_w: 7
ReXNet:
input_ch: 16
final_ch: 180
width_mult: 1.0
depth_mult: 1.0
use_se: 0
se_ratio: 12
out_h: 7
out_w: 7
feat_dim: 512
dropout_ratio: 0.2
LightCNN:
depth: 29
out_h: 7
out_w: 7
feat_dim: 512
dropout_ratio: 0.2
RepVGG:
blocks1: 4
blocks2: 6
blocks3: 16
blocks4: 1
width1: 2
width2: 2
width3: 2
width4: 4
out_h: 7
out_w: 7
feat_dim: 512
SwinTransformer:
img_size: 224
patch_size: 4
in_chans: 3
embed_dim: 96
depths:
- 2
- 2
- 18
- 2
num_heads:
- 3
- 6
- 12
- 24
window_size: 7
mlp_ratio: 4.0
drop_rate: 0.0
drop_path_rate: 0.3