forked from experiencor/keras-yolo2
-
Notifications
You must be signed in to change notification settings - Fork 32
/
config.json
36 lines (30 loc) · 1.06 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": [1.57,1.77, 2.80,8.62, 3.60,3.36, 5.51,10.50, 9.22,11.30],
"max_box_per_image": 10,
"labels": ["helmet","person with helmet","person without helmet"]
},
"train": {
"train_image_folder": "train_image_folder\\",
"train_annot_folder": "train_annot_folder\\",
"train_times": 10,
"pretrained_weights": "",
"batch_size": 2,
"learning_rate": 1e-4,
"nb_epochs": 50,
"warmup_epochs": 0,
"object_scale": 5.0 ,
"no_object_scale": 1.0,
"coord_scale": 1.0,
"class_scale": 1.0,
"saved_weights_name": "full_yolo_helmet_and_person.h5",
"debug": true
},
"valid": {
"valid_image_folder": "",
"valid_annot_folder": "",
"valid_times": 1
}
}