forked from pranoyr/head-detection-using-yolo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
36 lines (30 loc) · 1 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
{
"model" : {
"backend": "Full Yolo",
"input_size": 416,
"anchors": [0.57273, 0.677385, 1.87446, 2.06253, 3.33843, 5.47434, 7.88282, 3.52778, 9.77052, 9.16828],
"max_box_per_image": 10,
"labels": ["head"]
},
"train": {
"train_image_folder": "JPEGImages/",
"train_annot_folder": "Annotations/",
"train_times": 8,
"pretrained_weights": "",
"batch_size": 16,
"learning_rate": 1e-4,
"nb_epochs": 1,
"warmup_epochs": 3,
"object_scale": 5.0 ,
"no_object_scale": 1.0,
"coord_scale": 1.0,
"class_scale": 1.0,
"saved_weights_name": "model.h5",
"debug": true
},
"valid": {
"valid_image_folder": "",
"valid_annot_folder": "",
"valid_times": 1
}
}