diff --git a/inference-engine/ie_bridges/c/samples/hello_classification/README.md b/inference-engine/ie_bridges/c/samples/hello_classification/README.md index b0cf1b5d21d..26babb9c20c 100644 --- a/inference-engine/ie_bridges/c/samples/hello_classification/README.md +++ b/inference-engine/ie_bridges/c/samples/hello_classification/README.md @@ -14,7 +14,7 @@ Hello Classification C sample application demonstrates how to use the following | Options | Values | |:--- |:--- -| Validated Models | AlexNet and GoogLeNet (image classification networks) +| Validated Models | [alexnet](@ref omz_models_model_alexnet), [googlenet-v1](@ref omz_models_model_googlenet_v1) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | The sample uses OpenCV\* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png) | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/ie_bridges/c/samples/hello_nv12_input_classification/README.md b/inference-engine/ie_bridges/c/samples/hello_nv12_input_classification/README.md index dfa05afb621..1456c87a6db 100644 --- a/inference-engine/ie_bridges/c/samples/hello_nv12_input_classification/README.md +++ b/inference-engine/ie_bridges/c/samples/hello_nv12_input_classification/README.md @@ -12,7 +12,7 @@ Basic Inference Engine API is covered by [Hello Classification C sample](../hell | Options | Values | |:--- |:--- -| Validated Models | AlexNet (image classification network) +| Validated Models | [alexnet](@ref omz_models_model_alexnet) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | An uncompressed image in the NV12 color format - \*.yuv | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/ie_bridges/c/samples/object_detection_sample_ssd/README.md b/inference-engine/ie_bridges/c/samples/object_detection_sample_ssd/README.md index 727d39ab270..1a046ebe32c 100644 --- a/inference-engine/ie_bridges/c/samples/object_detection_sample_ssd/README.md +++ b/inference-engine/ie_bridges/c/samples/object_detection_sample_ssd/README.md @@ -20,7 +20,7 @@ Basic Inference Engine API is covered by [Hello Classification C sample](../hell | Options | Values | |:--- |:--- -| Validated Models | Person detection SSD (object detection network) +| Validated Models | [person-detection-retail-0013](@ref omz_models_model_person_detection_retail_0013) | Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) | Validated images | The sample uses OpenCV* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (.bmp, .png, .jpg) | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/ie_bridges/python/sample/classification_sample_async/README.md b/inference-engine/ie_bridges/python/sample/classification_sample_async/README.md index a689438cb8b..f6688ab1aa0 100644 --- a/inference-engine/ie_bridges/python/sample/classification_sample_async/README.md +++ b/inference-engine/ie_bridges/python/sample/classification_sample_async/README.md @@ -14,7 +14,7 @@ Basic Inference Engine API is covered by [Hello Classification Python* Sample](. | Options | Values | | :------------------------- | :-------------------------------------------------------------------------------------------------------- | -| Validated Models | [alexnet](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/public/alexnet/alexnet.md) | +| Validated Models | [alexnet](@ref omz_models_model_alexnet) | | Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) | | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | | Other language realization | [C++](../../../../samples/classification_sample_async) | diff --git a/inference-engine/ie_bridges/python/sample/hello_classification/README.md b/inference-engine/ie_bridges/python/sample/hello_classification/README.md index d662a94a263..2c3d8db550e 100644 --- a/inference-engine/ie_bridges/python/sample/hello_classification/README.md +++ b/inference-engine/ie_bridges/python/sample/hello_classification/README.md @@ -13,7 +13,7 @@ The following Inference Engine Python API is used in the application: | Options | Values | | :------------------------- | :-------------------------------------------------------------------------------------------------------- | -| Validated Models | [alexnet](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/public/alexnet/alexnet.md) | +| Validated Models | [alexnet](@ref omz_models_model_alexnet) | | Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) | | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | | Other language realization | [C++](../../../../samples/hello_classification), [C](../../../c/samples/hello_classification) | diff --git a/inference-engine/ie_bridges/python/sample/hello_reshape_ssd/README.md b/inference-engine/ie_bridges/python/sample/hello_reshape_ssd/README.md index 956f219e1b0..1815b2cb28f 100644 --- a/inference-engine/ie_bridges/python/sample/hello_reshape_ssd/README.md +++ b/inference-engine/ie_bridges/python/sample/hello_reshape_ssd/README.md @@ -14,7 +14,7 @@ Basic Inference Engine API is covered by [Hello Classification Python* Sample](. | Options | Values | | :------------------------- | :-------------------------------------------------------------------------------------------------------------------------- | -| Validated Models | [mobilenet-ssd](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/public/mobilenet-ssd/mobilenet-ssd.md) | +| Validated Models | [mobilenet-ssd](@ref omz_models_model_mobilenet_ssd) | | Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) | | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | | Other language realization | [C++](../../../../samples/hello_reshape_ssd) | diff --git a/inference-engine/ie_bridges/python/sample/ngraph_function_creation_sample/README.md b/inference-engine/ie_bridges/python/sample/ngraph_function_creation_sample/README.md index f0701f963ae..280034641a9 100644 --- a/inference-engine/ie_bridges/python/sample/ngraph_function_creation_sample/README.md +++ b/inference-engine/ie_bridges/python/sample/ngraph_function_creation_sample/README.md @@ -15,7 +15,7 @@ Basic Inference Engine API is covered by [Hello Classification Python* Sample](. | Options | Values | | :------------------------- | :---------------------------------------------------------------------- | -| Validated Models | LeNet (image classification network) | +| Validated Models | LeNet | | Model Format | Network weights file (\*.bin) | | Validated images | The sample uses OpenCV\* to [read input grayscale image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png) or single-channel `ubyte` image | | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md b/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md index b2638d78dac..582865eec75 100644 --- a/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md +++ b/inference-engine/ie_bridges/python/sample/object_detection_sample_ssd/README.md @@ -14,7 +14,7 @@ Basic Inference Engine API is covered by [Hello Classification Python* Sample](. | Options | Values | | :------------------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -| Validated Models | [mobilenet-ssd](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/public/mobilenet-ssd/mobilenet-ssd.md), [face-detection-0206](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/intel/face-detection-0206/description/face-detection-0206.md) | +| Validated Models | [mobilenet-ssd](@ref omz_models_model_mobilenet_ssd), [face-detection-0206](@ref omz_models_model_face_detection_0206) | | Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) | | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | | Other language realization | [C++](../../../../samples/object_detection_sample_ssd), [C](../../../c/samples/object_detection_sample_ssd) | diff --git a/inference-engine/ie_bridges/python/sample/style_transfer_sample/README.md b/inference-engine/ie_bridges/python/sample/style_transfer_sample/README.md index 1889ab99eb6..8e66ac7824b 100644 --- a/inference-engine/ie_bridges/python/sample/style_transfer_sample/README.md +++ b/inference-engine/ie_bridges/python/sample/style_transfer_sample/README.md @@ -15,7 +15,7 @@ Basic Inference Engine API is covered by [Hello Classification Python* Sample](. | Options | Values | | :------------------------- | :-------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| Validated Models | [fast-neural-style-mosaic-onnx](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/public/fast-neural-style-mosaic-onnx/fast-neural-style-mosaic-onnx.md) | +| Validated Models | [fast-neural-style-mosaic-onnx](@ref omz_models_model_fast_neural_style_mosaic_onnx) | | Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) | | Supported devices | [All](../../../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | | Other language realization | [C++](../../../../samples/style_transfer_sample) | diff --git a/inference-engine/samples/classification_sample_async/README.md b/inference-engine/samples/classification_sample_async/README.md index 9a007fdebb4..2504daa1316 100644 --- a/inference-engine/samples/classification_sample_async/README.md +++ b/inference-engine/samples/classification_sample_async/README.md @@ -18,7 +18,7 @@ Basic Inference Engine API is covered by [Hello Classification C++ sample](../he | Options | Values | |:--- |:--- -| Validated Models | AlexNet and GoogLeNet (image classification networks) +| Validated Models | [alexnet](@ref omz_models_model_alexnet), [googlenet-v1](@ref omz_models_model_googlenet_v1) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | The sample uses OpenCV\* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png), single-channel `ubyte` images. | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/samples/hello_classification/README.md b/inference-engine/samples/hello_classification/README.md index ef79f7b1ad3..ccd81725135 100644 --- a/inference-engine/samples/hello_classification/README.md +++ b/inference-engine/samples/hello_classification/README.md @@ -14,7 +14,7 @@ Hello Classification C++ sample application demonstrates how to use the followin | Options | Values | |:--- |:--- -| Validated Models | AlexNet and GoogLeNet (image classification networks) +| Validated Models | [alexnet](@ref omz_models_model_alexnet), [googlenet-v1](@ref omz_models_model_googlenet_v1) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | The sample uses OpenCV\* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png) | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/samples/hello_nv12_input_classification/README.md b/inference-engine/samples/hello_nv12_input_classification/README.md index eabb59efb74..06a8d6781e5 100644 --- a/inference-engine/samples/hello_nv12_input_classification/README.md +++ b/inference-engine/samples/hello_nv12_input_classification/README.md @@ -15,7 +15,7 @@ Basic Inference Engine API is covered by [Hello Classification C++ sample](../he | Options | Values | |:--- |:--- -| Validated Models | AlexNet (image classification network) +| Validated Models | [alexnet](@ref omz_models_model_alexnet) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | An uncompressed image in the NV12 color format - \*.yuv | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/samples/hello_reshape_ssd/README.md b/inference-engine/samples/hello_reshape_ssd/README.md index ebbd3fd30a3..69727c31e2d 100644 --- a/inference-engine/samples/hello_reshape_ssd/README.md +++ b/inference-engine/samples/hello_reshape_ssd/README.md @@ -16,7 +16,7 @@ Basic Inference Engine API is covered by [Hello Classification C++ sample](../he | Options | Values | |:--- |:--- -| Validated Models | Person detection SSD (object detection network) +| Validated Models | [person-detection-retail-0013](@ref omz_models_model_person_detection_retail_0013) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | The sample uses OpenCV\* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png) | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/samples/ngraph_function_creation_sample/README.md b/inference-engine/samples/ngraph_function_creation_sample/README.md index 9f7b4f8d433..72516cc274d 100644 --- a/inference-engine/samples/ngraph_function_creation_sample/README.md +++ b/inference-engine/samples/ngraph_function_creation_sample/README.md @@ -19,7 +19,7 @@ Basic Inference Engine API is covered by [Hello Classification C++ sample](../he | Options | Values | |:--- |:--- -| Validated Models | LeNet (image classification network) +| Validated Models | LeNet | Model Format | Network weights file (\*.bin) | Validated images | single-channel `ubyte` images | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/samples/object_detection_sample_ssd/README.md b/inference-engine/samples/object_detection_sample_ssd/README.md index a52b7d3fcbb..e011acd5eea 100644 --- a/inference-engine/samples/object_detection_sample_ssd/README.md +++ b/inference-engine/samples/object_detection_sample_ssd/README.md @@ -16,7 +16,7 @@ Basic Inference Engine API is covered by [Hello Classification C++ sample](../he | Options | Values | |:--- |:--- -| Validated Models | Person detection SSD (object detection network) +| Validated Models | [person-detection-retail-0013](@ref omz_models_model_person_detection_retail_0013) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | The sample uses OpenCV\* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png) | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) | diff --git a/inference-engine/samples/style_transfer_sample/README.md b/inference-engine/samples/style_transfer_sample/README.md index a1efeb56f73..630e7e3d861 100644 --- a/inference-engine/samples/style_transfer_sample/README.md +++ b/inference-engine/samples/style_transfer_sample/README.md @@ -15,7 +15,7 @@ Basic Inference Engine API is covered by [Hello Classification C++ sample](../he | Options | Values | |:--- |:--- -| Validated Models | [fast-neural-style-mosaic-onnx](https://github.com/openvinotoolkit/open_model_zoo/blob/master/models/public/fast-neural-style-mosaic-onnx/fast-neural-style-mosaic-onnx.md) (style transfer models) +| Validated Models | [fast-neural-style-mosaic-onnx](@ref omz_models_model_fast_neural_style_mosaic_onnx) | Model Format | Inference Engine Intermediate Representation (\*.xml + \*.bin), ONNX (\*.onnx) | Validated images | The sample uses OpenCV\* to [read input image](https://docs.opencv.org/master/d4/da8/group__imgcodecs.html#ga288b8b3da0892bd651fce07b3bbd3a56) (\*.bmp, \*.png) | Supported devices | [All](../../../docs/IE_DG/supported_plugins/Supported_Devices.md) |