Closed nieknaber closed 2 years ago
@nieknaber Have you tried using import_network?
I was able to load the blob to a MYRIAD device using the following:
from openvino.inference_engine import IECore
ie = IECore()
exec_net_imported = ie.import_network(model_file="face-detection-adas-0001.blob", device_name="MYRIAD")
Closing, please start a new issue if additional assistance is needed.
I want to import a compiled model in python, but something seems to go wrong.
I am using openvino version 2022.1
I have a model in IR representation (the .xml and .bin file) and first compile that with the compile tool:
Then I want to import this compiled model in python. I do not want to compile the model myself in python from the .xml and .bin file because in this way I can choose the optimal number of shaves. I use the following python code:
I however get the following error:
How can I correctly import a pre-compiled model in python?