forked from openvinotoolkit/nncf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mask_rcnn_coco_int8.json
57 lines (53 loc) · 1.37 KB
/
mask_rcnn_coco_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
{
"model": "MaskRCNN",
"input_info": {
"sample_size": [1, 1024, 1024, 3]
},
"epochs": 1,
"batch_size": 16,
"weight_decay": 0.0001,
"dataset": "coco/2017",
"optimizer": {
"type": "Adam",
"schedule_type": "piecewise_constant",
"schedule_params": {
"boundaries": [1],
"values": [1e-6, 1e-6]
}
},
"compression": {
"algorithm": "quantization",
"ignored_scopes": [
"gt_boxes",
"gt_masks",
"image_info",
"{re}.*tf.math.subtract.*",
"{re}.*tf.math.multiply.*",
"tf.__operators__.add_19",
"{re}.*tf.__operators__.add_[2-9]\\d",
"{re}.*tf.__operators__.add_[1-9]\\d\\d",
"{re}.*tf.math.sqrt.*",
"{re}.*tf.math.floor.*",
"{re}.*tf.compat.v1.floor_div.*",
"{re}.*tf.math.truediv.*",
"{re}.*tf.math.divide.*",
"{re}.*tf.math.pow.*",
"{re}.*tf.math.greater.*",
"{re}.*tf.math.minimum.*",
"{re}.*tf.math.maximum.*",
"{re}.*tf.math.reduce_max.*",
"{re}.*tf.math.reduce_min.*",
"{re}.*tf.nn.avg_pool.*",
"mask_fcn_logits",
"conv5-mask",
"mask-conv-l3",
"mask-conv-l2",
"mask-conv-l1",
"mask-conv-l0",
"fc1",
"fc0",
"class-predict",
"box-predict"
]
}
}