[Support]: yolov9 model compatibility 0.16.4 to 0.17.0 - fails on start #22188
-
Checklist
Describe the problem you are having2026-03-01 06:02:11.097554565 Process frigate.detector:ov: Steps to reproduceUpgrade Version0.17.0 In which browser(s) are you experiencing the issue with?No response Frigate config filemodel:
model_type: yolo-generic
path: /config/custom_models/yolov9s.onnx
width: 320
height: 320
input_tensor: nchw
input_dtype: float
labelmap_path: /config/custom_models/yolov9s-labels.txtdocker-compose file or Docker CLI commandn/aRelevant Frigate log outputaboveRelevant go2rtc log outputn/aOperating systemHome Assistant OS Install methodHome Assistant Add-on Network connectionWired Camera make and modeln/a Screenshots of the Frigate UI's System metrics pagesn/a Any other information that may be helpfulNo response |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 8 replies
-
|
The error you're encountering appears to be related to OpenVINO failing to compile your custom YOLO model. Based on your configuration, you're using a custom YOLOv9 model with OpenVINO. Your configuration shows: model:
model_type: yolo-generic
path: /config/custom_models/yolov9s.onnx
width: 320
height: 320
input_tensor: nchw
input_dtype: float
labelmap_path: /config/custom_models/yolov9s-labels.txtThe error Here are some troubleshooting steps:
detectors:
ov:
type: openvino
device: GPU # or CPU
detectors:
ov:
type: openvino
device: CPU
If the issue persists after these steps, you may want to test with one of the default OpenVINO models to confirm OpenVINO itself is working, then troubleshoot your custom model separately. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
For those that might come across the same issue when upgrading to 0.17.0 from 0.16.4. Found that a yolov9 onnx model that worked on 0.16.4 requires exporting with opset=12 to work with the latest OpenVINO used by 0.17.0. |
Beta Was this translation helpful? Give feedback.
For those that might come across the same issue when upgrading to 0.17.0 from 0.16.4. Found that a yolov9 onnx model that worked on 0.16.4 requires exporting with opset=12 to work with the latest OpenVINO used by 0.17.0.