-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathall.txt
129 lines (100 loc) · 1.72 KB
/
all.txt
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
########## spec_config ##########
### default
model = None
net_idx = None
path_key = None
# data & file path
path_img = None
### data
dim = 3
label_length = 2
sequence = 'ALL'
### Net
dv_num = [1,2,3]
cls_num = [1,2,3]
**** mr cls ****
cls_only = False
cls_ratio = 0
cls_loss = 'bce'
cls_output = 2
# s - simple
# p - Path-RCNN
cls_block = 's'
cls_w = 1
**** MC ****
MC_share = False
**** MP ****
share_b = [0]
# CO - conv
# SE - channel attention
# NL - Non-Local
# CASA - Channel & Spatial
MC_block = 'SE'
**** Non-Local ****
# 'gaussian', 'embedded',
# 'dot', 'concatenate'
NL_mode = 'embedded'
### train
pre_train = True
fix_BN = True
lth = 0.4
hth = 0.5
alpha = 0.25
### eval
cls_th = 0.05
nms_th = 0.01
s_th = 0.05
max_dets = 100
iou_th = 0.3
########## common_config ##########
**** hardware config ****
gpu_idx = 0
*************************
**** mode ****
mode = 'train'
eval = False
***********************************
**** train & val config ****
# train set
epoch = 36
start_epoch = 1
gap_epoch = 10
# dataloader set
# batch balance
train_bs = 16
num_workers = 4
val_bs = 1
test_num_workers = 0
***********************************
**** data config ****
# win set(white/un/ci)
win = 'ci'
# mirror
mirror = True
# Mask-RCNN size
in_size = 448
**** pixel-wise trans ****
# contrast
contrast = False
contrast_range = [0.65, 1.5]
# brightness
brightness = False
b_range = [0.7, 1.3]
# gaussian noise
noise = False
noise_range = [0, 0.1]
***********************************
**** optimizer config ****
optim = 'AdamW'
wd = 0.01
lr = 0.0001
flood = False
patience = 3
cos_lr = False
Tmax = 20
lr_gap = 100
cycle_r = False
***********************************
**** model config ****
save_log = False
***********************************