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
{
"VGG3D":
{
"negative_slop":0.1,
"norm_choice":"IN",
"base_filters":16,
"kernel_size":3,
"num_stages":3,
"pooling_ratios":[2,2,2,2,2],
"repeat_time_list":[2,2,3,3,3],
"dropout_rate":0.2,
"num_class":1
},
"ResNet":
{
"block":"BasicBlock",
"block_inplanes":[64,128,256,512],
"negative_slop":0.1,
"norm_choice":"IN",
"kernel_size":3,
"num_stages":4,
"pooling_ratios":[2,2,2,1],
"widen_factor":1.0,
"shortcut_type":"B",
"repeat_time_list":[3,4,6,3],
"dropout_rate":0.2,
"num_class":1,
"conv_choice":"DC"
},
"Se_ResNet":
{
"block":"BasicBlock",
"block_inplanes":[64,128,256,512],
"negative_slop":0.1,
"norm_choice":"IN",
"kernel_size":3,
"num_stages":4,
"pooling_ratios":[2,2,2,1],
"widen_factor":1.0,
"shortcut_type":"B",
"repeat_time_list":[3,4,6,3],
"dropout_rate":0.2,
"num_class":4,
"regression_choice":true
},
"Darknet":
{
"block_inplanes":[64,128,256,512],
"negative_slop":0.1,
"norm_choice":"IN",
"kernel_size":3,
"num_stages":4,
"pooling_ratios":[1,2,2,1],
"repeat_time_list":[2,2,3,3],
"dropout_rate":0.2,
"num_class":1,
"conv_choice":"DC"
},
"FSe_ResNet":
{
"block":"BasicBlock",
"block_inplanes":[64,128,256,512],
"negative_slop":0.01,
"norm_choice":"IN",
"kernel_size":3,
"num_stages":4,
"pooling_ratios":[2,2,2,1],
"widen_factor":1.0,
"shortcut_type":"B",
"repeat_time_list":[3,4,6,3],
"dropout_rate":0.2,
"num_class":1
}
}