Could not open the file: "whisper-large-v3-int8-ov\openvino_decoder_with_past_model.xml" Issue
#1
by
chiauho
- opened
Hi,
I followed the example code given. At pipe = ov_genai.WhisperPipeline(model_path, device), I received the following error:
ir: Could not open the file: "whisper-large-v3-int8-ov\openvino_decoder_with_past_model.xml"
Did I do something wrong? It's a simple 3 line code:
model_path = "whisper-large-v3-int8-ov"
device = "CPU"
pipe = openvino_genai.WhisperPipeline("whisper-large-v3-int8-ov", device)
Before this, I have already downloaded from huggingface_hub the OpenVINO/whisper-large-v3-int8-ov model
Appreciate if I could receive some direction as to how to resolve this.