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
2021-04-14 13:25:39 +03:00
This sample demonstrates how to do inference of image classification networks using Asynchronous Inference Request API.
Models with only 1 input and output are supported.
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
The following Inference Engine Python API is used in the application:
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
| Feature | API | Description |
| :----------------------- | :-------------------------------------------------------------------------------------------------------------------------- | :---------------------------------------------------- |
| Asynchronous Infer | [InferRequest.async_infer], [InferRequest.wait], [Blob.buffer] | Do asynchronous inference |
| Custom Extension Kernels | [IECore.add_extension], [IECore.set_config] | Load extension library and config to the device |
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
Basic Inference Engine API is covered by [Hello Classification Python* Sample ](../hello_classification/README.md ).
2019-04-12 18:25:53 +03:00
2021-04-14 13:25:39 +03:00
| Options | Values |
| :------------------------- | :-------------------------------------------------------------------------------------------------------- |
2021-06-30 16:48:32 +03:00
| Validated Models | [alexnet ](@ref omz_models_model_alexnet ) |
2021-11-01 12:59:09 +03:00
| Model Format | Inference Engine Intermediate Representation (.xml + .bin), ONNX (.onnx) |
| Supported devices | [All ](../../../docs/IE_DG/supported_plugins/Supported_Devices.md ) |
2021-11-18 10:08:20 +03:00
| 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
2021-04-14 13:25:39 +03:00
At startup, the sample application reads command-line parameters, prepares input data, loads a specified model and image(s) to the Inference Engine 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
2021-10-14 14:49:35 +03:00
each sample step at [Integration Steps ](../../../docs/IE_DG/Integrate_with_customer_application_new_API.md ) section of "Integrate the Inference Engine 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
```
python < path_to_sample > /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 ...]
2021-04-14 13:25:39 +03:00
[-l EXTENSION] [-c CONFIG] [-d DEVICE]
[--labels LABELS] [-nt NUMBER_TOP]
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).
-l EXTENSION, --extension EXTENSION
Optional. Required by the CPU Plugin for executing the
custom operation on a CPU. Absolute path to a shared
library with the kernels implementations.
-c CONFIG, --config CONFIG
Optional. Required by GPU or VPU Plugins for the
custom operation kernel. Absolute path to operation
description file (.xml).
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.
--labels LABELS Optional. Path to a labels mapping file.
2019-04-12 18:25:53 +03:00
-nt NUMBER_TOP, --number_top NUMBER_TOP
2021-04-14 13:25:39 +03:00
Optional. Number of top results.
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**:
>
2021-10-14 14:49:35 +03:00
> - By default, Inference Engine 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 [Converting a Model Using General Conversion Parameters](../../../docs/MO_DG/prepare_model/convert_model/Converting_Model_General.md).
2021-04-14 13:25:39 +03:00
>
2021-10-14 14:49:35 +03:00
> - Before running the sample with a trained model, make sure the model is converted to the Inference Engine 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
2021-09-07 19:21:41 +03:00
1. Download a pre-trained model using [Model Downloader ](@ref omz_tools_downloader ):
2021-07-14 12:07:34 +03:00
```
python < path_to_omz_tools > /downloader.py --name alexnet
```
2. If a model is not in the Inference Engine IR or ONNX format, it must be converted. You can do this using the model converter script:
2019-04-12 18:25:53 +03:00
2021-07-14 12:07:34 +03:00
```
python < path_to_omz_tools > /converter.py --name alexnet
```
3. Perform inference of `car.bmp` and `cat.jpg` using `alexnet` model on a `GPU` , for example:
```
python < path_to_sample > /classification_sample_async.py -m < path_to_model > /alexnet.xml -i < path_to_image > /car.bmp < path_to_image > /cat.jpg -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
```
2021-04-14 13:25:39 +03:00
[ INFO ] Creating Inference Engine
2021-07-14 12:07:34 +03:00
[ INFO ] Reading the network: c:\openvino\deployment_tools\open_model_zoo\tools\downloader\public\alexnet\FP32\alexnet.xml
2021-04-14 13:25:39 +03:00
[ INFO ] Configuring input and output blobs
[ INFO ] Loading the model to the plugin
2021-07-14 12:07:34 +03:00
[ WARNING ] Image c:\images\car.bmp is resized from (637, 749) to (227, 227)
[ WARNING ] Image c:\images\cat.jpg is resized from (300, 300) to (227, 227)
2021-04-14 13:25:39 +03:00
[ INFO ] Starting inference in asynchronous mode
[ INFO ] Infer request 0 returned 0
2021-07-14 12:07:34 +03:00
[ INFO ] Image path: c:\images\car.bmp
2021-04-14 13:25:39 +03:00
[ INFO ] Top 10 results:
[ INFO ] classid probability
[ INFO ] -------------------
2021-07-14 12:07:34 +03:00
[ INFO ] 656 0.6645315
[ INFO ] 654 0.1121185
[ INFO ] 581 0.0698451
[ INFO ] 874 0.0334973
[ INFO ] 436 0.0259718
[ INFO ] 817 0.0173190
[ INFO ] 675 0.0109321
[ INFO ] 511 0.0109075
[ INFO ] 569 0.0083093
[ INFO ] 717 0.0063173
2021-04-14 13:25:39 +03:00
[ INFO ]
[ INFO ] Infer request 1 returned 0
2021-07-14 12:07:34 +03:00
[ INFO ] Image path: c:\images\cat.jpg
2021-04-14 13:25:39 +03:00
[ INFO ] Top 10 results:
[ INFO ] classid probability
[ INFO ] -------------------
2021-07-14 12:07:34 +03:00
[ INFO ] 876 0.1320105
[ INFO ] 435 0.1210389
[ INFO ] 285 0.0712640
[ INFO ] 282 0.0570528
[ INFO ] 281 0.0319335
[ INFO ] 999 0.0285931
[ INFO ] 94 0.0270323
[ INFO ] 36 0.0240510
[ INFO ] 335 0.0198461
[ INFO ] 186 0.0183939
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
2021-10-14 14:49:35 +03:00
- [Integrate the Inference Engine with Your Application ](../../../docs/IE_DG/Integrate_with_customer_application_new_API.md )
- [Using Inference Engine Samples ](../../../docs/IE_DG/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
[IECore]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IECore.html
[IECore.add_extension]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IECore.html#a8a4b671a9928c7c059bd1e76d2333967
[IECore.set_config]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IECore.html#a2c738cee90fca27146e629825c039a05
[IECore.read_network]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IECore.html#a0d69c298618fab3a08b855442dca430f
[IENetwork.input_info]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IENetwork.html#data_fields
[IENetwork.outputs]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IENetwork.html#data_fields
[InputInfoPtr.precision]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1InputInfoPtr.html#data_fields
[DataPtr.precision]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1DataPtr.html#data_fields
[IECore.load_network]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1IECore.html#ac9a2e043d14ccfa9c6bbf626cfd69fcc
[InputInfoPtr.input_data.shape]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1InputInfoPtr.html#data_fields
[InferRequest.async_infer]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1InferRequest.html#a95ebe0368cdf4d5d64f9fddc8ee1cd0e
[InferRequest.wait]:https://docs.openvinotoolkit.org/latest/ie_python_api/classie__api_1_1InferRequest.html#a936fa50a7531e2f9a9e9c3d45afc9b43
<!-- TODO replace by python API link -->
2021-11-18 10:08:20 +03:00
[Blob.buffer]:https://docs.openvinotoolkit.org/latest/classInferenceEngine_1_1Blob.html#a0cad47b43204b115b4017b6b2564fa7e