forked from alexsu52/nncf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresnet18_imagenet_accuracy_aware.json
48 lines (48 loc) · 1.07 KB
/
resnet18_imagenet_accuracy_aware.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
47
48
{
"model": "resnet18",
"pretrained": true,
"batch_size": 512,
"epochs": 100,
"input_info": {
"sample_size": [
1,
3,
224,
224
]
},
"optimizer": {
"type": "SGD",
"base_lr": 0.1,
"weight_decay": 1e-4,
"schedule_type": "multistep",
"steps": [
20,
40,
60,
80
],
"optimizer_params": {
"momentum": 0.9,
"nesterov": true
}
},
"accuracy_aware_training": {
"mode": "adaptive_compression_level",
"params": {
"maximal_relative_accuracy_degradation": 1.0,
"initial_training_phase_epochs": 100,
"patience_epochs": 100
}
},
"compression": {
"algorithm": "filter_pruning",
"pruning_init": 0.1,
"params": {
"schedule": "exponential",
"pruning_target": 0.4,
"pruning_steps": 15,
"filter_importance": "geometric_median"
}
}
}