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
Copy file name to clipboardExpand all lines: docs/en/backends/openvino.md
+22Lines changed: 22 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -63,6 +63,28 @@ Notes:
63
63
the RoiAlign operation is replaced with the [ExperimentalDetectronROIFeatureExtractor](https://docs.openvinotoolkit.org/latest/openvino_docs_ops_detection_ExperimentalDetectronROIFeatureExtractor_6.html) operation in the ONNX graph.
64
64
- Models "VFNet" and "Faster R-CNN + DCN" use the custom "DeformableConv2D" operation.
65
65
66
+
### Deployment config
67
+
68
+
With the deployment config, you can specify additional options for the Model Optimizer.
69
+
To do this, add the necessary parameters to the `backend_config.mo_options` in the fields `args` (for parameters with values) and `flags` (for flags).
70
+
71
+
Example:
72
+
```python
73
+
backend_config =dict(
74
+
mo_options=dict(
75
+
args=dict({
76
+
'--mean_values': [0, 0, 0],
77
+
'--scale_values': [255, 255, 255],
78
+
'--data_type': 'FP32',
79
+
}),
80
+
flags=['--disable_fusing'],
81
+
)
82
+
)
83
+
```
84
+
85
+
Information about the possible parameters for the Model Optimizer can be found in the [documentation](https://docs.openvino.ai/latest/openvino_docs_MO_DG_prepare_model_convert_model_Converting_Model.html).
0 commit comments