OpenVino not work on 0.17 #22238
Unanswered
alessioburgassi
asked this question in
Detector Support
Replies: 2 comments
|
Based on the error, Frigate is looking for the OpenVINO model at The issue is in your config - you're specifying a model path that doesn't match the default OpenVINO model location. The default OpenVINO model is provided at Update your config to use the correct default model path:(1)(2) detectors:
ov:
type: openvino
device: AUTO
model:
width: 300
height: 300
input_tensor: nhwc
input_pixel_format: bgr
path: /openvino-model/ssdlite_mobilenet_v2.xml
labelmap_path: /openvino-model/coco_91cl_bkgr.txtThe key changes:
The default OpenVINO model comes from Intel's Open Model Zoo and is already included in the Frigate container.(1) 📚 Sources: Have another question? Just tag @inkeep. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Describe the problem you are having
I have installed a docker version on debian but openvino not work... file non found
unknown | 2026-03-03 21:52:20 | unknown | File "/opt/frigate/frigate/detectors/detection_runners.py", line 298, in init
unknown | 2026-03-03 21:52:20 | unknown | raise FileNotFoundError(f"OpenVINO model file {model_path} not found.")
unknown | 2026-03-03 21:52:20 | unknown | FileNotFoundError: OpenVINO model file /config/model_cache/openvino/ssdlite_mobilenet_v2_fp16.xml not found.
Version
0.17
Frigate config file
docker-compose file or Docker CLI command
Relevant Frigate log output
Install method
Docker Compose
Object Detector
OpenVino
Screenshots of the Frigate UI's System metrics pages
don't show
Any other information that may be helpful
No response
All reactions