diff --git a/samples/cpp/classification_sample_async/README.md b/samples/cpp/classification_sample_async/README.md index d3f1244b8e4..500dae5e4ec 100644 --- a/samples/cpp/classification_sample_async/README.md +++ b/samples/cpp/classification_sample_async/README.md @@ -104,15 +104,17 @@ To run the sample, you need to specify a model and image: - You can use images from the media files collection available `here `. .. note:: - + - By default, OpenVINO™ Toolkit Samples and Demos expect input with BGR channels order. If you trained your model to work with RGB order, you need to manually rearrange the default channels order in the sample or demo application or reconvert your model using ``mo`` with ``reverse_input_channels`` argument specified. For more information about the argument, refer to **When to Reverse Input Channels** section of :doc:`Embedding Preprocessing Computation `. - + - Before running the sample with a trained model, make sure the model is converted to the intermediate representation (IR) format (\*.xml + \*.bin) using the :doc:`model conversion API `. - + - The sample accepts models in ONNX format (.onnx) that do not require preprocessing. - Stating flags that take only single option like `-m` multiple times, for example `./classification_sample_async -m model.xml -m model2.xml`, results in only the first value being used. + - The sample supports NCHW model layout only. + Example +++++++ diff --git a/samples/python/classification_sample_async/README.md b/samples/python/classification_sample_async/README.md index a9a49b0e2b6..57d26c9e682 100644 --- a/samples/python/classification_sample_async/README.md +++ b/samples/python/classification_sample_async/README.md @@ -92,15 +92,17 @@ To run the sample, you need specify a model and image: - You can use images from the media files collection available `here `__ . .. note:: - + - By default, OpenVINO™ Toolkit Samples and demos expect input with BGR channels order. If you trained your model to work with RGB order, you need to manually rearrange the default channels order in the sample or demo application or reconvert your model using model conversion API with ``reverse_input_channels`` argument specified. For more information about the argument, refer to **When to Reverse Input Channels** section of :doc:`Embedding Preprocessing Computation `. - + - Before running the sample with a trained model, make sure the model is converted to the intermediate representation (IR) format (\*.xml + \*.bin) using :doc:`model conversion API `. - + - The sample accepts models in ONNX format (.onnx) that do not require preprocessing. - Stating flags that take only single option like `-m` multiple times, for example `python classification_sample_async.py -m model.xml -m model2.xml`, results in only the last value being used. + - The sample supports NCHW model layout only. + Example +++++++