forked from HRNet/HRFormer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hrt_small.yaml
62 lines (59 loc) · 2.6 KB
/
hrt_small.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
AMP_OPT_LEVEL: O1
MODEL:
TYPE: hrt
NAME: hrt_small
HRT:
DROP_PATH_RATE: 0.
STAGE1:
NUM_MODULES: 1
NUM_BRANCHES: 1
NUM_BLOCKS: [2]
NUM_CHANNELS: [64]
NUM_HEADS: [2]
NUM_MLP_RATIOS: [4]
NUM_RESOLUTIONS: [[56, 56]]
BLOCK: 'BOTTLENECK'
STAGE2:
NUM_MODULES: 1
NUM_BRANCHES: 2
NUM_BLOCKS: [2, 2]
NUM_CHANNELS: [32, 64]
NUM_HEADS: [1, 2]
NUM_MLP_RATIOS: [4, 4]
NUM_RESOLUTIONS: [[56, 56], [28, 28]]
NUM_WINDOW_SIZES: [7, 7]
ATTN_TYPES: [[['isa_local', 'isa_local'], ['isa_local', 'isa_local']]]
FFN_TYPES: [[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']]]
BLOCK: 'TRANSFORMER_BLOCK'
STAGE3:
NUM_MODULES: 4
NUM_BRANCHES: 3
NUM_BLOCKS: [2, 2, 2]
NUM_CHANNELS: [32, 64, 128]
NUM_HEADS: [1, 2, 4]
NUM_MLP_RATIOS: [4, 4, 4]
NUM_RESOLUTIONS: [[56, 56], [28, 28], [14, 14]]
NUM_WINDOW_SIZES: [7, 7, 7]
ATTN_TYPES: [[['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local']],
[['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local']],
[['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local']],
[['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local']]]
FFN_TYPES: [[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']],
[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']],
[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']],
[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']]]
BLOCK: 'TRANSFORMER_BLOCK'
STAGE4:
NUM_MODULES: 2
NUM_BRANCHES: 4
NUM_BLOCKS: [2, 2, 2, 2]
NUM_CHANNELS: [32, 64, 128, 256]
NUM_HEADS: [1, 2, 4, 8]
NUM_MLP_RATIOS: [4, 4, 4, 4]
NUM_RESOLUTIONS: [[56, 56], [28, 28], [14, 14], [7, 7]]
NUM_WINDOW_SIZES: [7, 7, 7, 7]
ATTN_TYPES: [[['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local']],
[['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local'], ['isa_local', 'isa_local']]]
FFN_TYPES: [[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']],
[['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp'], ['conv_mlp', 'conv_mlp']]]
BLOCK: 'TRANSFORMER_BLOCK'