Frigate and Frigate+ models question/confused. #23299
-
|
Hi, I would like to clarify which models are supported in Frigate or Frigate+? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Frigate (open-source) and Frigate+ have different model ecosystems: Frigate (Open Source) - Bring Your Own ModelYou can use your own custom-trained models with Frigate. For Rockchip (RKNN) specifically, the following model types are supported: (1) YOLO-NAS:
YOLOv9:
YOLOx:
You can also provide your own Frigate+ - Subscription ModelsFrigate+ offers pre-trained models specifically optimized for security cameras. Three model types are available: For Rockchip NPU, the recommended detector type is Your Use CaseFor training your own YOLOv9-c model and converting to RKNN:
Example config for YOLOv9: model:
path: frigate-fp16-yolov9-c
model_type: yolo-generic
width: 320
height: 320
input_tensor: nhwc
labelmap_path: /labelmap/coco-80.txtFrigate+ models are subscription-only and trained on community-submitted security camera images, while open-source Frigate supports custom models you train yourself. (2) 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
Frigate (open-source) and Frigate+ have different model ecosystems:
Frigate (Open Source) - Bring Your Own Model
You can use your own custom-trained models with Frigate. For Rockchip (RKNN) specifically, the following model types are supported: (1)
YOLO-NAS:
deci-fp16-yolonas_s,deci-fp16-yolonas_m,deci-fp16-yolonas_lYOLOv9:
frigate-fp16-yolov9-t,frigate-fp16-yolov9-s,frigate-fp16-yolov9-m,frigate-fp16-yolov9-c,frigate-fp16-yolov9-eYOLOx:
rock-i8-yolox_nano,rock-i8-yolox_tiny,rock-fp16-yolox_nano,rock-fp16-yolox_tinyYou can also provide your own
.rknnmodel by converting from ONNX format using the rknn-toolkit2. (1)Frigate+ - Subscription Models
Frigate+ offers pre-train…