Skip to content

Commit 1a09af3

Browse files
committed
openvinotoolkit.org->openvino.ai
1 parent b71c776 commit 1a09af3

File tree

66 files changed

+82
-82
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+82
-82
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,15 @@ license: https://raw.githubusercontent.com/pudae/tensorflow-densenet/master/LICE
177177

178178
## Model Conversion
179179

180-
Deep Learning Inference Engine (IE) supports models in the Intermediate Representation (IR) format. A model from any supported framework can be converted to IR using the Model Optimizer tool included in the OpenVINO™ toolkit. Find more information about conversion in the [Model Optimizer Developer Guide](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html). After a successful conversion you get a model in the IR format, with the `*.xml` file representing the net graph and the `*.bin` file containing the net parameters.
180+
Deep Learning Inference Engine (IE) supports models in the Intermediate Representation (IR) format. A model from any supported framework can be converted to IR using the Model Optimizer tool included in the OpenVINO™ toolkit. Find more information about conversion in the [Model Optimizer Developer Guide](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html). After a successful conversion you get a model in the IR format, with the `*.xml` file representing the net graph and the `*.bin` file containing the net parameters.
181181

182182
> **NOTE 1**: Image preprocessing parameters (mean and scale) must be built into a converted model to simplify model usage.
183183
184184
> **NOTE 2**: If a model input is a color image, color channel order should be `BGR`.
185185
186186
## Demo
187187

188-
A demo shows the main idea of how to infer a model using IE. If your model solves one of the tasks supported by the Open Model Zoo, try to find an appropriate option from [demos](demos/README.md) or [samples](https://docs.openvinotoolkit.org/latest/_docs_IE_DG_Samples_Overview.html). Otherwise, you must provide your own demo (C++ or Python).
188+
A demo shows the main idea of how to infer a model using IE. If your model solves one of the tasks supported by the Open Model Zoo, try to find an appropriate option from [demos](demos/README.md) or [samples](https://docs.openvino.ai/latest/_docs_IE_DG_Samples_Overview.html). Otherwise, you must provide your own demo (C++ or Python).
189189

190190
The demo's name should end with `_demo` suffix to follow the convention of the project.
191191

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Open Model Zoo is licensed under [Apache License Version 2.0](LICENSE).
1919

2020
## Online Documentation
2121
* [OpenVINO™ Release Notes](https://software.intel.com/en-us/articles/OpenVINO-RelNotes)
22-
* [Pre-Trained Models](https://docs.openvinotoolkit.org/latest/trained_models.html)
23-
* [Demos and Samples](https://docs.openvinotoolkit.org/latest/omz_demos.html)
22+
* [Pre-Trained Models](https://docs.openvino.ai/latest/trained_models.html)
23+
* [Demos and Samples](https://docs.openvino.ai/latest/omz_demos.html)
2424

2525
## Other Usage Examples
2626
* [Open Visual Cloud](https://01.org/openvisualcloud)

demos/3d_segmentation_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -123,5 +123,5 @@ The demo reports
123123
## See Also
124124

125125
* [Open Model Zoo Demos](../../README.md)
126-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
126+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
127127
* [Model Downloader](../../../tools/model_tools/README.md)

demos/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ list above.
350350

351351
## See Also
352352

353-
* [Intel OpenVINO Documentation](https://docs.openvinotoolkit.org/latest/documentation.html)
353+
* [Intel OpenVINO Documentation](https://docs.openvino.ai/latest/documentation.html)
354354
* [Overview of OpenVINO™ Toolkit Intel's Pre-Trained Models](../models/intel/index.md)
355355
* [Overview of OpenVINO™ Toolkit Public Pre-Trained Models](../models/public/index.md)
356356

demos/action_recognition_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,5 +150,5 @@ The application uses OpenCV to display the real-time action recognition results
150150
## See Also
151151

152152
* [Open Model Zoo Demos](../../README.md)
153-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
153+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
154154
* [Model Downloader](../../../tools/model_tools/README.md)

demos/bert_named_entity_recognition_demo/python/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,6 @@ Notice that when the original "context" (text from the url) do not fit the model
102102
## See Also
103103

104104
* [Open Model Zoo Demos](../../README.md)
105-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
105+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
106106
* [Model Downloader](../../../tools/model_tools/README.md)
107-
* [Benchmark C++ Sample](https://docs.openvinotoolkit.org/latest/_inference_engine_samples_benchmark_app_README.html)
107+
* [Benchmark C++ Sample](https://docs.openvino.ai/latest/_inference_engine_samples_benchmark_app_README.html)

demos/bert_question_answering_demo/python/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ length of the context plus length of the question (both in tokens), if the resul
129129
sequence length that the network expects. This is performance (speed) and memory footprint saving option.
130130
Since some networks are not-reshapable (due to limitations of the internal layers) the reshaping might fail,
131131
so you will need to run the demo without it.
132-
Please see general [reshape intro and limitations](https://docs.openvinotoolkit.org/latest/_docs_IE_DG_ShapeInference.html)
132+
Please see general [reshape intro and limitations](https://docs.openvino.ai/latest/_docs_IE_DG_ShapeInference.html)
133133

134134
## Demo Outputs
135135

@@ -147,6 +147,6 @@ Thus, for the long texts, the network is called multiple times. The results are
147147
## See Also
148148

149149
* [Open Model Zoo Demos](../../README.md)
150-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
150+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
151151
* [Model Downloader](../../../tools/model_tools/README.md)
152-
* [Benchmark C++ Sample](https://docs.openvinotoolkit.org/latest/_inference_engine_samples_benchmark_app_README.html)
152+
* [Benchmark C++ Sample](https://docs.openvino.ai/latest/_inference_engine_samples_benchmark_app_README.html)

demos/bert_question_answering_embedding_demo/python/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Notice that since order of inputs for the model does matter, the demo script che
139139
from the command line match the actual network inputs.
140140
The embedding model is reshaped by the demo to infer embedding vectors for long contexts and short question.
141141
Make sure that the original model converted by Model Optimizer with reshape option.
142-
Please see general [reshape intro and limitations](https://docs.openvinotoolkit.org/latest/_docs_IE_DG_ShapeInference.html)
142+
Please see general [reshape intro and limitations](https://docs.openvino.ai/latest/_docs_IE_DG_ShapeInference.html)
143143

144144
## Demo Outputs
145145

@@ -158,6 +158,6 @@ Thus, for the long paragraph texts, the network is called multiple times as for
158158
## See Also
159159

160160
* [Open Model Zoo Demos](../../README.md)
161-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
161+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
162162
* [Model Downloader](../../../tools/model_tools/README.md)
163-
* [Benchmark C++ Sample](https://docs.openvinotoolkit.org/latest/_inference_engine_samples_benchmark_app_README.html)
163+
* [Benchmark C++ Sample](https://docs.openvino.ai/latest/_inference_engine_samples_benchmark_app_README.html)

demos/classification_benchmark_demo/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,5 +206,5 @@ You can use these metrics to measure application-level performance.
206206
## See Also
207207

208208
* [Open Model Zoo Demos](../../README.md)
209-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
209+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
210210
* [Model Downloader](../../../tools/model_tools/README.md)

demos/classification_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -242,5 +242,5 @@ You can use these metrics to measure application-level performance.
242242
## See Also
243243

244244
* [Open Model Zoo Demos](../../README.md)
245-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
245+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
246246
* [Model Downloader](../../../tools/model_tools/README.md)

demos/colorization_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,5 +96,5 @@ You can use both of these metrics to measure application-level performance.
9696
## See Also
9797

9898
* [Open Model Zoo Demos](../../README.md)
99-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
99+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
100100
* [Model Downloader](../../../tools/model_tools/README.md)

demos/crossroad_camera_demo/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,5 +142,5 @@ You can use these metrics to measure application-level performance.
142142
## See Also
143143

144144
* [Open Model Zoo Demos](../../README.md)
145-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
145+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
146146
* [Model Downloader](../../../tools/model_tools/README.md)

demos/deblurring_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,5 +122,5 @@ You can use both of these metrics to measure application-level performance.
122122
## See Also
123123

124124
* [Open Model Zoo Demos](../../README.md)
125-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
125+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
126126
* [Model Downloader](../../../tools/model_tools/README.md)

demos/face_detection_mtcnn_demo/cpp_gapi/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,5 +108,5 @@ The demo reports
108108
## See Also
109109

110110
* [Open Model Zoo Demos](../../README.md)
111-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
111+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
112112
* [Model Downloader](../../../tools/model_tools/README.md)

demos/face_detection_mtcnn_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,5 +112,5 @@ You can use both of these metrics to measure application-level performance.
112112
## See Also
113113

114114
* [Open Model Zoo Demos](../../README.md)
115-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
115+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
116116
* [Model Downloader](../../../tools/model_tools/README.md)

demos/face_recognition_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,5 +251,5 @@ You can use both of these metrics to measure application-level performance.
251251
## See also
252252

253253
* [Open Model Zoo Demos](../../README.md)
254-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
254+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
255255
* [Model Downloader](../../../tools/model_tools/README.md)

demos/formula_recognition_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,5 +267,5 @@ The application outputs recognized formula into the console or into the file.
267267
## See Also
268268

269269
* [Open Model Zoo Demos](../../README.md)
270-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
270+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
271271
* [Model Downloader](../../../tools/model_tools/README.md)

demos/gaze_estimation_demo/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,5 +147,5 @@ You can use these metrics to measure application-level performance.
147147
## See Also
148148

149149
* [Open Model Zoo Demos](../../README.md)
150-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
150+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
151151
* [Model Downloader](../../../tools/model_tools/README.md)

demos/gaze_estimation_demo/cpp_gapi/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,5 +128,5 @@ You can use these metrics to measure application-level performance.
128128
## See Also
129129

130130
* [Open Model Zoo Demos](../../README.md)
131-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
131+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
132132
* [Model Downloader](../../../tools/model_tools/README.md)

demos/gesture_recognition_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,5 @@ You can use both of these metrics to measure application-level performance.
145145
## See Also
146146

147147
* [Open Model Zoo Demos](../../README.md)
148-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
148+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
149149
* [Model Downloader](../../../tools/model_tools/README.md)

demos/gpt2_text_prediction_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ You can use the following command to try the demo (assuming the used model from
8484
## See Also
8585

8686
* [Open Model Zoo Demos](../../README.md)
87-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
87+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
8888
* [Model Downloader](../../../tools/model_tools/README.md)

demos/handwritten_text_recognition_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ The demo reports
117117
## See Also
118118

119119
* [Open Model Zoo Demos](../../README.md)
120-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
120+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
121121
* [Model Downloader](../../../tools/model_tools/README.md)

demos/human_pose_estimation_3d_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,5 +127,5 @@ You can use both of these metrics to measure application-level performance.
127127
## See Also
128128

129129
* [Open Model Zoo Demos](../../README.md)
130-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
130+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
131131
* [Model Downloader](../../../tools/model_tools/README.md)

demos/human_pose_estimation_demo/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,5 +115,5 @@ You can use these metrics to measure application-level performance.
115115
## See Also
116116

117117
* [Open Model Zoo Demos](../../README.md)
118-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
118+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
119119
* [Model Downloader](../../../tools/model_tools/README.md)

demos/human_pose_estimation_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -155,5 +155,5 @@ You can use both of these metrics to measure application-level performance.
155155
## See Also
156156

157157
* [Open Model Zoo Demos](../../README.md)
158-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
158+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
159159
* [Model Downloader](../../../tools/model_tools/README.md)

demos/image_inpainting_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,5 @@ In interactive mode this demo provides interactive means to apply mask and see t
120120
## See Also
121121

122122
* [Open Model Zoo Demos](../../README.md)
123-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
123+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
124124
* [Model Downloader](../../../tools/model_tools/README.md)

demos/image_processing_demo/cpp/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Running the application with the empty list of options yields an error message.
105105

106106
To run the demo, you can use public or pre-trained models. To download the pre-trained models, use the OpenVINO [Model Downloader](../../../tools/model_tools/README.md). The list of models supported by the demo is in `<omz_dir>/demos/image_processing_demo/cpp/models.lst`.
107107

108-
> **NOTE**: Before running the demo with a trained model, make sure the model is converted to the Inference Engine format (\*.xml + \*.bin) using the [Model Optimizer tool](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html).
108+
> **NOTE**: Before running the demo with a trained model, make sure the model is converted to the Inference Engine format (\*.xml + \*.bin) using the [Model Optimizer tool](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html).
109109
110110
You can use the following command to enhance the resolution of the images captured by a camera using a pre-trained single-image-super-resolution-1033 network:
111111

@@ -154,5 +154,5 @@ You can use these metrics to measure application-level performance.
154154
## See Also
155155

156156
* [Open Model Zoo Demos](../../README.md)
157-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
157+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
158158
* [Model Downloader](../../../tools/model_tools/README.md)

demos/image_retrieval_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,5 @@ You can use both of these metrics to measure application-level performance.
132132
## See Also
133133

134134
* [Open Model Zoo Demos](../../README.md)
135-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
135+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
136136
* [Model Downloader](../../../tools/model_tools/README.md)

demos/image_translation_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,5 +117,5 @@ The results of the demo processing are saved to a folder that is specified by th
117117
## See Also
118118

119119
* [Open Model Zoo Demos](../../README.md)
120-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
120+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
121121
* [Model Downloader](../../../tools/model_tools/README.md)

demos/instance_segmentation_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,5 @@ You can use both of these metrics to measure application-level performance.
153153
## See Also
154154

155155
* [Open Model Zoo Demos](../../README.md)
156-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
156+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
157157
* [Model Downloader](../../../tools/model_tools/README.md)

demos/interactive_face_detection_demo/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -153,5 +153,5 @@ You can use these metrics to measure application-level performance.
153153
## See Also
154154

155155
* [Open Model Zoo Demos](../../README.md)
156-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
156+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
157157
* [Model Downloader](../../../tools/model_tools/README.md)

demos/interactive_face_detection_demo/cpp_gapi/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,5 @@ You can use this metric to measure application-level performance.
139139
## See Also
140140

141141
* [Open Model Zoo Demos](../../README.md)
142-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
142+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
143143
* [Model Downloader](../../../tools/model_tools/README.md)

demos/machine_translation_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,5 @@ The demo reports
9090
## See Also
9191

9292
* [Open Model Zoo Demos](../../README.md)
93-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
93+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
9494
* [Model Downloader](../../../tools/model_tools/README.md)

demos/mask_rcnn_demo/cpp/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,5 @@ You can use this metric to measure application-level performance.
7979
## See Also
8080

8181
* [Open Model Zoo Demos](../../README.md)
82-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
82+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
8383
* [Model Downloader](../../../tools/model_tools/README.md)

demos/monodepth_demo/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,5 @@ You can use both of these metrics to measure application-level performance.
132132
## See Also
133133

134134
* [Open Model Zoo Demos](../../README.md)
135-
* [Model Optimizer](https://docs.openvinotoolkit.org/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
135+
* [Model Optimizer](https://docs.openvino.ai/latest/_docs_MO_DG_Deep_Learning_Model_Optimizer_DevGuide.html)
136136
* [Model Downloader](../../../tools/model_tools/README.md)

0 commit comments

Comments
 (0)