OpenVINO Inference import/installation issue #2231
Unanswered
AsadAhmed29
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to recreate "Getting Started_001" notebook in my colab notebook before moving on to work with my own dataset. However, upon trying to make an inference using :
inferencer = OpenVINOInferencer(
path=openvino_model_path, # Path to the OpenVINO IR model.
metadata=metadata, # Path to the metadata file.
device="CPU", # We would like to run it on an Intel CPU.
)
It's constantly returning Name Error : ov is not defined.
Apparently, OpenVINOInferencer class uses core = ov.Core() but openvino is installed and imported successfully.
ov.version is returning : OpenVINO Runtime version: 2024.3.0-16041-1e3b88e4e3f-releases/2024/3
Anyone else had the same issue? would appreciate help.
Beta Was this translation helpful? Give feedback.
All reactions