forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathunet_camvid_magnitude_sparsity_int8.json
68 lines (62 loc) · 1.41 KB
/
unet_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
{
"model": "unet",
"dataset" : "camvid",
"preprocessing": {
"resize": {
"height": 368,
"width": 480
},
"normalize":
{
"mean": [0.39068785, 0.40521392, 0.41434407],
"std" : [0.29652068, 0.30514979, 0.30080369]
}
},
"input_info": {
"sample_size": [1, 3, 368, 480]
},
"weighing": "mfb",
"optimizer": {
"type": "Adam",
"optimizer_params": {
"lr": 5.0e-5,
"weight_decay": 2.0e-4
},
"schedule_type": "plateau",
"scheduler_params": {
"threshold": 0.002,
"patience": 3
},
"gamma": 0.1
},
"model_params": {
"input_size_hw": [368, 480]
},
"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"
}
]
}