Skip to content
Discussion options

You must be logged in to vote

Your config is missing the required model section for the ONNX detector, and the provider field is not a valid option in Frigate’s detector configuration(1)(2)(3). The ONNX detector section should look like this, with a model block specifying the model path and parameters:

detectors:
  nvidia:
    type: onnx
    device: 0

model:
  model_type: yolo-generic
  width: 640
  height: 640
  input_tensor: nchw
  input_dtype: float
  path: /config/model_cache/yolo.onnx
  labelmap_path: /labelmap/coco-80.txt

(2), (3)

You can find more details and examples in the official documentation:

Make sure your model path matches the actual file and that the width/h…

Replies: 5 comments 1 reply

Comment options

NickM-27
Sep 16, 2025
Collaborator Sponsor

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by Nyffexx
Comment options

You must be logged in to vote
1 reply
@NickM-27
Comment options

NickM-27 Sep 16, 2025
Collaborator Sponsor

Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment