2021-04-23 16:40:08 +03:00
# Image Classification Async Python* Sample {#openvino_inference_engine_ie_bridges_python_sample_classification_sample_async_README}
2019-04-12 18:25:53 +03:00
2022-02-14 19:03:45 +03:00
This sample demonstrates how to do inference of image classification models using Asynchronous Inference Request API.
2021-04-14 13:25:39 +03:00
Models with only 1 input and output are supported.
2019-04-12 18:25:53 +03:00
2022-02-14 19:03:45 +03:00
The following Python API is used in the application:
2019-04-12 18:25:53 +03:00
2022-02-14 19:03:45 +03:00
| Feature | API | Description |
| :----------------- | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | :------------------------ |
| Asynchronous Infer | [openvino.runtime.AsyncInferQueue], [openvino.runtime.AsyncInferQueue.set_callback], [openvino.runtime.AsyncInferQueue.start_async], [openvino.runtime.AsyncInferQueue.wait_all], [openvino.runtime.InferRequest.results] | Do asynchronous inference |
2019-04-12 18:25:53 +03:00
2022-02-14 19:03:45 +03:00
Basic OpenVINO™ Runtime API is covered by [Hello Classification Python* Sample ](../hello_classification/README.md ).
2019-04-12 18:25:53 +03:00
2022-02-14 19:03:45 +03:00
| Options | Values |
| :------------------------- | :----------------------------------------------------------------------- |
| Validated Models | [alexnet ](@ref omz_models_model_alexnet ) |
| Model Format | OpenVINO™ toolkit Intermediate Representation (.xml + .bin), ONNX (.onnx) |
| Supported devices | [All ](../../../docs/OV_Runtime_UG/supported_plugins/Supported_Devices.md ) |
| Other language realization | [C++ ](../../../samples/cpp/classification_sample_async/README.md ) |
2019-08-09 19:02:42 +03:00
2021-04-14 13:25:39 +03:00
## How It Works
2019-04-12 18:25:53 +03:00
2022-02-14 19:03:45 +03:00
At startup, the sample application reads command-line parameters, prepares input data, loads a specified model and image(s) to the OpenVINO™ Runtime plugin, performs synchronous inference, and processes output data, logging each step in a standard output stream.
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
You can see the explicit description of
2022-03-02 20:07:52 +03:00
each sample step at [Integration Steps ](../../../docs/OV_Runtime_UG/integrate_with_your_application.md ) section of "Integrate OpenVINO™ Runtime with Your Application" guide.
2019-04-12 18:25:53 +03:00
## Running
2021-07-14 12:07:34 +03:00
Run the application with the `-h` option to see the usage message:
2021-04-14 13:25:39 +03:00
2021-07-14 12:07:34 +03:00
```
2022-02-14 19:03:45 +03:00
python classification_sample_async.py -h
2019-04-12 18:25:53 +03:00
```
2021-04-14 13:25:39 +03:00
Usage message:
2021-07-14 12:07:34 +03:00
```
2019-04-12 18:25:53 +03:00
usage: classification_sample_async.py [-h] -m MODEL -i INPUT [INPUT ...]
2022-02-14 19:03:45 +03:00
[-d DEVICE]
2019-04-12 18:25:53 +03:00
Options:
-h, --help Show this help message and exit.
-m MODEL, --model MODEL
2021-04-14 13:25:39 +03:00
Required. Path to an .xml or .onnx file with a trained
model.
2019-04-12 18:25:53 +03:00
-i INPUT [INPUT ...], --input INPUT [INPUT ...]
2021-04-14 13:25:39 +03:00
Required. Path to an image file(s).
2019-04-12 18:25:53 +03:00
-d DEVICE, --device DEVICE
Optional. Specify the target device to infer on; CPU,
2021-04-14 13:25:39 +03:00
GPU, MYRIAD, HDDL or HETERO: is acceptable. The sample
2019-04-12 18:25:53 +03:00
will look for a suitable plugin for device specified.
2021-04-14 13:25:39 +03:00
Default value is CPU.
2019-04-12 18:25:53 +03:00
```
2021-04-14 13:25:39 +03:00
To run the sample, you need specify a model and image:
2021-04-23 16:40:08 +03:00
2021-08-10 23:03:26 +03:00
- you can use [public ](@ref omz_models_group_public ) or [Intel's ](@ref omz_models_group_intel ) pre-trained models from the Open Model Zoo. The models can be downloaded using the [Model Downloader ](@ref omz_tools_downloader ).
2021-04-23 16:40:08 +03:00
- you can use images from the media files collection available at https://storage.openvinotoolkit.org/data/test_data.
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
> **NOTES**:
>
2022-03-24 22:27:29 +03:00
> - 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 the Model Optimizer tool with `--reverse_input_channels` argument specified. For more information about the argument, refer to **When to Reverse Input Channels** section of [Embedding Preprocessing Computation](../../../docs/MO_DG/prepare_model/convert_model/Converting_Model.md).
2021-04-14 13:25:39 +03:00
>
2022-02-14 19:03:45 +03:00
> - Before running the sample with a trained model, make sure the model is converted to the intermediate representation (IR) format (\*.xml + \*.bin) using the [Model Optimizer tool](../../../docs/MO_DG/Deep_Learning_Model_Optimizer_DevGuide.md).
2021-04-14 13:25:39 +03:00
>
2021-04-23 16:40:08 +03:00
> - The sample accepts models in ONNX format (.onnx) that do not require preprocessing.
2019-04-12 18:25:53 +03:00
2021-07-14 12:07:34 +03:00
### Example
2022-02-14 19:03:45 +03:00
1. Install the `openvino-dev` Python package to use Open Model Zoo Tools:
2022-10-12 14:16:02 +02:00
```
Add benchmark samples (#13388)
* Add sync_bnehcmark
* Fix Unix comilation
* niter->time
* Explain main loop
* samples: factor out common
* Code style
* clang-format -i
* return 0; -> return EXIT_SUCCESS;, +x
* Update throughput_benchmark
* Add READMEs
* Fix READMEs refs
* Add sync_benchmark.py
* Add niter, infer_new_request, -pc
* from datetime import timedelta
* Fix niter and seconds_to_run
* Add disclaimer about benchmark_app performance
* Update samples/cpp/benchmark/sync_benchmark/README.md
* Add dynamic_shape_bert_benhcmark
* Add dynamic_shape_detection_benchmark
* Adopt for detr-resnet50
* Remove sync_benchmark2, throughput_benchmark2, perf counters
* clang-format -i
* Fix flake8
* Add README.md
* Add links to sample_dynamic_shape_bert_benchmark
* Add softmax
* nameless LatencyMetrics
* parent.parent -> parents[2]
* Add bert_benhcmark sample
* Code style
* Add bert_benhcmark/README.md
* rm -r samples/python/benchmark/dynamic_shape_bert_benhcmark/
* rm -r samples/cpp/benchmark/dynamic_shape_detection_benchmark/
* bert_benhcmark/README.md: remove dynamic shape
* Remove add_subdirectory(dynamic_shape_detection_benchmark)
* flake8
* samples: Add a note about CUMULATIVE_THROUGHPUT, don’t expect get_property() to throw, don’t introduce json dependency for samples/cpp/common
* / namespace
* Add article
* namespace -> static
* Update README, seconds_ro_run 10, niter 10, no inter alinment
* percentile->median
* benchmark samples: use generate(), align logs, update READMEs
* benchmakr samples: remove percentile()
* samples/python/benchmark/bert_benhcmark/bert_benhcmark.py: report average sequence length and processing time
* Python samples: move requirements.txt to every sample
* Remove numpy from requirements.txt
* Remove Building section from Python samples, install only required extras from openvino-dev, set up environment for bert_benhcmark, report duration for bert_benhcmark
* Install openvino-dev for Hello Reshape SSD C++ Sample
2022-12-05 15:12:53 +04:00
python -m pip install openvino-dev[caffe]
2022-10-12 14:16:02 +02:00
```
2022-02-14 19:03:45 +03:00
2. Download a pre-trained model:
2022-10-12 14:16:02 +02:00
```
omz_downloader --name alexnet
```
2021-07-14 12:07:34 +03:00
2022-02-14 19:03:45 +03:00
3. If a model is not in the IR or ONNX format, it must be converted. You can do this using the model converter:
2022-10-12 14:16:02 +02:00
```
omz_converter --name alexnet
```
2021-07-14 12:07:34 +03:00
2022-02-14 19:03:45 +03:00
4. Perform inference of `banana.jpg` and `car.bmp` using the `alexnet` model on a `GPU` , for example:
2022-10-12 14:16:02 +02:00
```
python classification_sample_async.py -m alexnet.xml -i banana.jpg car.bmp -d GPU
```
2019-04-12 18:25:53 +03:00
2019-05-27 21:18:32 +03:00
## Sample Output
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
The sample application logs each step in a standard output stream and outputs top-10 inference results.
2021-07-14 12:07:34 +03:00
```
2022-02-14 19:03:45 +03:00
[ INFO ] Creating OpenVINO Runtime Core
[ INFO ] Reading the model: C:/test_data/models/alexnet.xml
2021-04-14 13:25:39 +03:00
[ INFO ] Loading the model to the plugin
[ INFO ] Starting inference in asynchronous mode
2022-02-14 19:03:45 +03:00
[ INFO ] Image path: /test_data/images/banana.jpg
2021-04-14 13:25:39 +03:00
[ INFO ] Top 10 results:
2022-02-14 19:03:45 +03:00
[ INFO ] class_id probability
[ INFO ] --------------------
[ INFO ] 954 0.9707602
[ INFO ] 666 0.0216788
[ INFO ] 659 0.0032558
[ INFO ] 435 0.0008082
[ INFO ] 809 0.0004359
[ INFO ] 502 0.0003860
[ INFO ] 618 0.0002867
[ INFO ] 910 0.0002866
[ INFO ] 951 0.0002410
[ INFO ] 961 0.0002193
2021-04-14 13:25:39 +03:00
[ INFO ]
2022-02-14 19:03:45 +03:00
[ INFO ] Image path: /test_data/images/car.bmp
2021-04-14 13:25:39 +03:00
[ INFO ] Top 10 results:
2022-02-14 19:03:45 +03:00
[ INFO ] class_id probability
[ INFO ] --------------------
[ INFO ] 656 0.5120340
[ INFO ] 874 0.1142275
[ INFO ] 654 0.0697167
[ INFO ] 436 0.0615163
[ INFO ] 581 0.0552262
[ INFO ] 705 0.0304179
[ INFO ] 675 0.0151660
[ INFO ] 734 0.0151582
[ INFO ] 627 0.0148493
[ INFO ] 757 0.0120964
2021-04-14 13:25:39 +03:00
[ INFO ]
[ INFO ] This sample is an API example, for any performance measurements please use the dedicated benchmark_app tool
```
2019-04-12 18:25:53 +03:00
## See Also
2021-04-14 13:25:39 +03:00
2022-03-02 20:07:52 +03:00
- [Integrate the OpenVINO™ Runtime with Your Application ](../../../docs/OV_Runtime_UG/integrate_with_your_application.md )
2022-02-14 19:03:45 +03:00
- [Using OpenVINO™ Toolkit Samples ](../../../docs/OV_Runtime_UG/Samples_Overview.md )
2021-08-10 23:03:26 +03:00
- [Model Downloader ](@ref omz_tools_downloader )
2021-10-14 14:49:35 +03:00
- [Model Optimizer ](../../../docs/MO_DG/Deep_Learning_Model_Optimizer_DevGuide.md )
2021-04-14 13:25:39 +03:00
2022-12-16 08:14:48 +01:00
[openvino.runtime.AsyncInferQueue]:https://docs.openvino.ai/2022.3/api/ie_python_api/_autosummary/openvino.runtime.AsyncInferQueue.html
[openvino.runtime.AsyncInferQueue.set_callback]:https://docs.openvino.ai/2022.3/api/ie_python_api/_autosummary/openvino.runtime.AsyncInferQueue.html#openvino .runtime.AsyncInferQueue.set_callback
[openvino.runtime.AsyncInferQueue.start_async]:https://docs.openvino.ai/2022.3/api/ie_python_api/_autosummary/openvino.runtime.AsyncInferQueue.html#openvino .runtime.AsyncInferQueue.start_async
[openvino.runtime.AsyncInferQueue.wait_all]:https://docs.openvino.ai/2022.3/api/ie_python_api/_autosummary/openvino.runtime.AsyncInferQueue.html#openvino .runtime.AsyncInferQueue.wait_all
[openvino.runtime.InferRequest.results]:https://docs.openvino.ai/2022.3/api/ie_python_api/_autosummary/openvino.runtime.InferRequest.html#openvino .runtime.InferRequest.results