forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathicnet_camvid_magnitude_sparsity_int8.json
73 lines (65 loc) · 1.49 KB
/
icnet_camvid_magnitude_sparsity_int8.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"model": "icnet",
"dataset" : "camvid",
"preprocessing": {
"resize": {
"height": 768,
"width": 960
},
"normalize":
{
"mean": [0.39068785, 0.40521392, 0.41434407],
"std" : [0.29652068, 0.30514979, 0.30080369]
}
},
"augmentations": {
"random_hflip": 0.5
},
"input_info": {
"sample_size": [1, 3, 768, 960]
},
"weighing": "mfb",
"optimizer": {
"type": "adam",
"optimizer_params": {
"lr": 5.0e-5,
"weight_decay": 2.0e-4
},
"schedule_type": "poly",
"scheduler_params": {
"power": 0.9
}
},
"model_params": {
"in_channels": 3,
"input_size_hw": [768, 960]
},
"compression": [
{
"algorithm": "magnitude_sparsity",
"sparsity_init": 0.1,
"params": {
"schedule": "multistep",
"multistep_steps": [
5,
10,
20,
30,
40
],
"multistep_sparsity_levels": [
0.1,
0.2,
0.3,
0.4,
0.5,
0.6
]
}
},
{
"algorithm": "quantization",
"ignored_scopes": ["ICNet/interpolate_0"]
}
]
}