Home > Software design >  The support of IR v6 has been removed from the product
The support of IR v6 has been removed from the product

Time:09-08

I am working on an Openvino project whenever I run the project it shows this error

The support of IR v6 has been removed from the product. Please, convert the original model using the Model Optimizer which comes with this version of the OpenVINO to generate the supported IR version.

I think this happened in the model loading face-detection-retail-0005.xml

CodePudding user response:

You can get the latest Intermediate Representation (IR) model for face-detection-retail-0005 (IR v11) from Open Model Zoo by running the following command in OpenVINO™ 2022.1 Development Tools:

omz_downloader --name face-detection-retail-0005

Refer to the Model Downloader and other automation tools for more information.

  • Related