-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcryolo_config.json
36 lines (33 loc) · 1.2 KB
/
cryolo_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
// See documentation at <http://sphire.mpg.de/wiki/doku.php?id=cryolo_config>
// Not all JSON parsers support comments, so delete these two lines before use.
{
"model": {
"architecture": "PhosaurusNet",
"input_size": 768,
"anchors": [200,200],
"max_box_per_image": 600,
"filter": [0.1,"filtered"]
},
"train": {
"train_image_folder": "training_micrographs",
"train_annot_folder": "training_coordinates",
"train_times": 10,
"pretrained_weights": "gmodel_phosnet_20190314.h5",
"batch_size": 5,
"learning_rate": 1e-4,
"nb_epoch": 50,
"warmup_epochs": 0,
"object_scale": 5.0 ,
"no_object_scale": 1.0,
"coord_scale": 1.0,
"class_scale": 1.0,
"log_path": "logs",
"saved_weights_name": "your-model.h5",
"debug": true
},
"valid": {
"valid_image_folder": "validation_micrographs",
"valid_annot_folder": "validation_coordinates",
"valid_times": 1
}
}