-
Notifications
You must be signed in to change notification settings - Fork 54
/
config.json
40 lines (34 loc) · 1.19 KB
/
config.json
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
{
"model" : {
"min_input_size": 288,
"max_input_size": 448,
"anchors": [55,69, 75,234, 133,240, 136,129, 142,363, 203,290, 228,184, 285,359, 341,260],
"labels": ["kangaroo"]
},
"train": {
"train_image_folder": "/home/andy/Desktop/github/kangaroo/images/",
"train_annot_folder": "/home/andy/Desktop/github/kangaroo/annots/",
"cache_name": "kangaroo_train.pkl",
"train_times": 8,
"batch_size": 16,
"learning_rate": 1e-4,
"nb_epochs": 100,
"warmup_epochs": 3,
"ignore_thresh": 0.5,
"gpus": "0,1",
"grid_scales": [1,1,1],
"obj_scale": 5,
"noobj_scale": 1,
"xywh_scale": 1,
"class_scale": 1,
"tensorboard_dir": "logs",
"saved_weights_name": "kangaroo.h5",
"debug": true
},
"valid": {
"valid_image_folder": "",
"valid_annot_folder": "",
"cache_name": "",
"valid_times": 1
}
}