Frigate 0.16 Support for Nvidia 1080? #19943
Replies: 2 comments 2 replies
-
Based on the documentation, Frigate supports NVIDIA GTX 1080 for object detection using the ONNX detector with TensorRT acceleration (1). The GTX 1080 meets the minimum hardware requirements as it supports CUDA Compute Capability 6.1 and is compatible with the 12.x series CUDA libraries (2). For your NVIDIA GTX 1080 setup, you should use the detectors:
onnx:
type: onnx
model:
model_type: yolo-generic
width: 320
height: 320
input_tensor: nchw
input_dtype: float
path: /config/model_cache/yolo.onnx
labelmap_path: /labelmap/coco-80.txt The error you're encountering ("Unsupported model IR version: 12, max supported IR version: 10") indicates that your ONNX model was created with a newer version of ONNX that isn't compatible with the ONNX runtime in your Frigate container. For NVIDIA GPUs, TensorRT will automatically be detected and used with the ONNX detector in the Your Docker configuration should include proper GPU access: services:
frigate:
image: ghcr.io/blakeblackshear/frigate:stable-tensorrt
deploy:
resources:
reservations:
devices:
- driver: nvidia
device_ids: ['0']
count: 1
capabilities: [gpu] The minimum driver version on your host system must be >=545, and your GPU must support Compute Capability 5.0 or greater (2). The GTX 1080 meets these requirements. 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
It is technically supported, I think you'll just need to make adjustments so a compatible version of ONNX is used. I am not entirely sure what steps are needed, but Gemini / ChatGPT may be able to adjust the yolov9 script for you to be compatible |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to setup Frigate for the first time using an nvidia 1080. I have never had a working Frigate configuration before, this is my initial usage.
My configuration loaded and showed the video stream without the
detectors
ormodels
sections present.With the yolov7-320 model loaded, Frigate seems to restart over and over. It seems caused by this.
Researching this I found no clear solution or description of what the problem here is. I generated the models this way (from the docs)
Beta Was this translation helpful? Give feedback.
All reactions