Franva
Franva

Reputation: 7077

How to deploy OpenVINO IR model to Intel Movidius Myriadx VPU

I searched a while and could not find any documents about deploying the OpenVINO IR model directly to Intel's MyriadX VPU.

My understanding is they both come from Intel, there should be a way to do this.

What can I try in order to solve this?

Upvotes: 1

Views: 391

Answers (2)

Rommel_Intel
Rommel_Intel

Reputation: 1413

If you read the documentation that I had shared previously, you will notice the -h parameter would display everything that could be done with that compile_tool. You will get the answer there actually.

Run the compile_tool: compile_tool.exe -m "model_location\efficientdet-d0-tf\FP16\efficientdet-d0-tf.xml" -d MYRIAD -o "location_you_want_to_store_the_blob\blob_efficientdet\blob_filename_must_have.blob"

Datasheet/Documentation is your best friend now, make sure to read and try to understand them.

Another thing to take note is, anything related with NCS2/MYRIAD/VPU must be in FP16 format.

enter image description here

Upvotes: 0

Rommel_Intel
Rommel_Intel

Reputation: 1413

To infer the IR with MYRIAD, You may use the OpenVINO official Samples for that purpose. Use the -d MYRIAD parameter to run it on Myriad.

Don't forget to install the Plugin.

This seems to be the same question as this Github thread.

Upvotes: 0

Related Questions