forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
retinanet_coco_pruning.json
46 lines (42 loc) · 1.03 KB
/
retinanet_coco_pruning.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
41
42
43
44
45
46
{
"model": "RetinaNet",
"input_info": {
"sample_size": [1, 640, 640, 3]
},
"epochs": 12,
"batch_size": 64,
"weight_decay": 0.0001,
"dataset": "coco/2017",
"dataset_type": "tfds",
"optimizer": {
"type": "momentum",
"optimizer_params": {
"momentum": 0.9,
"nesterov": true
},
"schedule_type": "step_warmup",
"schedule_params": {
"warmup_learning_rate": 0.0067,
"warmup_steps": 500,
"init_learning_rate": 0.08,
"learning_rate_levels": [
0.008,
0.0008
],
"learning_rate_steps": [
15000,
20000
]
}
},
"compression": {
"algorithm": "filter_pruning",
"pruning_init": 0.1,
"params": {
"schedule": "exponential",
"pruning_target": 0.4,
"pruning_steps": 4,
"filter_importance": "geometric_median"
}
}
}