You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "A threshold value of existence probability score, all of objects with score less than this threshold are ignored."
25
+
},
26
+
"nms_threshold": {
27
+
"type": "number",
28
+
"default": 0.7,
29
+
"minimum": 0.0,
30
+
"maximum": 1.0,
31
+
"description": "A threshold value of NMS."
32
+
},
33
+
"precision": {
34
+
"type": "string",
35
+
"default": "int8",
36
+
"description": "Operation precision to be used on inference. Valid value is one of: [fp32, fp16, int8]."
37
+
},
38
+
"calibration_algorithm": {
39
+
"type": "string",
40
+
"default": "Entropy",
41
+
"description": "Calibration algorithm to be used for quantization when precision==int8. Valid value is one of: [Entropy, (Legacy | Percentile), MinMax]."
42
+
},
43
+
"dla_core_id": {
44
+
"type": "number",
45
+
"default": -1,
46
+
"description": "If positive ID value is specified, the node assign inference task to the DLA core."
47
+
},
48
+
"quantize_first_layer": {
49
+
"type": "boolean",
50
+
"default": false,
51
+
"description": "If true, set the operating precision for the first (input) layer to be fp16. This option is valid only when precision==int8."
52
+
},
53
+
"quantize_last_layer": {
54
+
"type": "boolean",
55
+
"default": false,
56
+
"description": "If true, set the operating precision for the last (output) layer to be fp16. This option is valid only when precision==int8."
57
+
},
58
+
"profile_per_layer": {
59
+
"type": "boolean",
60
+
"default": false,
61
+
"description": "If true, profiler function will be enabled. Since the profile function may affect execution speed, it is recommended to set this flag true only for development purpose."
62
+
},
63
+
"clip_value": {
64
+
"type": "number",
65
+
"default": 6.0,
66
+
"description": "If positive value is specified, the value of each layer output will be clipped between [0.0, clip_value]. This option is valid only when precision==int8 and used to manually specify the dynamic range instead of using any calibration."
67
+
},
68
+
"preprocess_on_gpu": {
69
+
"type": "boolean",
70
+
"default": true,
71
+
"description": "If true, pre-processing is performed on GPU."
72
+
},
73
+
"calibration_image_list_path": {
74
+
"type": "string",
75
+
"default": "",
76
+
"description": "Path to a file which contains path to images. Those images will be used for int8 quantization."
"description": "A threshold value of existence probability score, all of objects with score less than this threshold are ignored."
25
+
},
26
+
"nms_threshold": {
27
+
"type": "number",
28
+
"default": 0.7,
29
+
"minimum": 0.0,
30
+
"maximum": 1.0,
31
+
"description": "A threshold value of NMS."
32
+
},
33
+
"precision": {
34
+
"type": "string",
35
+
"default": "fp16",
36
+
"description": "Operation precision to be used on inference. Valid value is one of: [fp32, fp16, int8]."
37
+
},
38
+
"calibration_algorithm": {
39
+
"type": "string",
40
+
"default": "MinMax",
41
+
"description": "Calibration algorithm to be used for quantization when precision==int8. Valid value is one of: [Entropy, (Legacy | Percentile), MinMax]."
42
+
},
43
+
"dla_core_id": {
44
+
"type": "number",
45
+
"default": -1,
46
+
"description": "If positive ID value is specified, the node assign inference task to the DLA core."
47
+
},
48
+
"quantize_first_layer": {
49
+
"type": "boolean",
50
+
"default": false,
51
+
"description": "If true, set the operating precision for the first (input) layer to be fp16. This option is valid only when precision==int8."
52
+
},
53
+
"quantize_last_layer": {
54
+
"type": "boolean",
55
+
"default": false,
56
+
"description": "If true, set the operating precision for the last (output) layer to be fp16. This option is valid only when precision==int8."
57
+
},
58
+
"profile_per_layer": {
59
+
"type": "boolean",
60
+
"default": false,
61
+
"description": "If true, profiler function will be enabled. Since the profile function may affect execution speed, it is recommended to set this flag true only for development purpose."
62
+
},
63
+
"clip_value": {
64
+
"type": "number",
65
+
"default": 0.0,
66
+
"description": "If positive value is specified, the value of each layer output will be clipped between [0.0, clip_value]. This option is valid only when precision==int8 and used to manually specify the dynamic range instead of using any calibration."
67
+
},
68
+
"preprocess_on_gpu": {
69
+
"type": "boolean",
70
+
"default": true,
71
+
"description": "If true, pre-processing is performed on GPU."
72
+
},
73
+
"calibration_image_list_path": {
74
+
"type": "string",
75
+
"default": "",
76
+
"description": "Path to a file which contains path to images. Those images will be used for int8 quantization."
0 commit comments