forked from TonyZ1Min/yolo-for-k210
-
Notifications
You must be signed in to change notification settings - Fork 0
/
configs.json
30 lines (30 loc) · 1.05 KB
/
configs.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
{
"model" : {
"architecture": "MobileNet",
"input_size": 224,
"anchors": [1, 1.2, 2, 3, 4, 3, 6, 4, 5, 6.5],
"labels": ["raccoon"],
"coord_scale" : 1.0,
"class_scale" : 1.0,
"object_scale" : 5.0,
"no_object_scale" : 1.0
},
"pretrained" : {
"full": ""
},
"train" : {
"actual_epoch": 30,
"train_image_folder": "train_img",
"train_annot_folder": "train_ann",
"train_times": 2,
"valid_image_folder": "",
"valid_annot_folder": "",
"valid_times": 1,
"batch_size": 4,
"learning_rate": 1e-4,
"saved_folder": "save",
"first_trainable_layer": "",
"jitter": true,
"is_only_detect" : false
}
}