forked from experiencor/keras-yolo3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gun-config.json
40 lines (34 loc) · 1.26 KB
/
gun-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": 235,
"max_input_size": 235,
"anchors": [120,105, 160,285, 182,167, 268,246, 297,340, 348,180, 367,274, 373,338, 389,389],
"labels": ["gun"]
},
"train": {
"train_image_folder": "../gun_data_cross_validation/xxxxx/train_img/",
"train_annot_folder": "../gun_data_cross_validation/xxxxx/train_annot/",
"cache_name": "",
"train_times": 8,
"batch_size": 16,
"learning_rate": 1e-4,
"nb_epochs": 20,
"warmup_epochs": 3,
"ignore_thresh": 0.5,
"gpus": "0",
"grid_scales": [1,1,1],
"obj_scale": 5,
"noobj_scale": 1,
"xywh_scale": 1,
"class_scale": 1,
"tensorboard_dir": "logs",
"saved_weights_name": "gun.h5",
"debug": true
},
"valid": {
"valid_image_folder": "../gun_data_cross_validation/xxxxx/test_img/",
"valid_annot_folder": "../gun_data_cross_validation/xxxxx/test_annot/",
"cache_name": "",
"valid_times": 1
}
}