From a153843d7ea608e9090733ce6f292b16c8b51192 Mon Sep 17 00:00:00 2001 From: Erich Blume Date: Sat, 14 Feb 2026 21:20:12 -0800 Subject: [PATCH] Switch Frigate detector from CPU/TFLite to ONNX with YOLO-NAS-s Uses YOLO-NAS-s model exported at 320x320 resolution, stored on NFS at /media/frigate/models/yolo_nas_s.onnx. Significantly better detection accuracy than the default SSD MobileNet V1. Co-Authored-By: Claude Opus 4.6 --- argocd/manifests/frigate/configmap.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/argocd/manifests/frigate/configmap.yaml b/argocd/manifests/frigate/configmap.yaml index fa20327..629f8ee 100644 --- a/argocd/manifests/frigate/configmap.yaml +++ b/argocd/manifests/frigate/configmap.yaml @@ -39,8 +39,17 @@ data: track: [person, car, dog, cat, bird] detectors: - cpu: - type: cpu + onnx: + type: onnx + + model: + model_type: yolonas + width: 320 + height: 320 + input_tensor: nchw + input_pixel_format: bgr + path: /media/frigate/models/yolo_nas_s.onnx + labelmap_path: /labelmap/coco-80.txt record: enabled: true