Face recognition "no recent attempts" on P100 GPU + best YOLO for 9cam Frigate? (v0.17-0) #22228
Replies: 5 comments 3 replies
-
|
I can help clarify the face recognition requirements and YOLO model selection for your P100 setup. Face Recognition IssueYour face recognition setup has a critical configuration problem. When running a COCO model (like your yolo11s416.onnx) that does not include The key requirement: Frigate needs to first detect a Resolution concerns: Face recognition runs on the camera stream defined by the Model requirements: When running a default COCO model or another model that does not include Try these adjustments: face_recognition:
enabled: true
model_size: small
min_area: 200 # Lower threshold
detection_threshold: 0.6 # Lower from default 0.7
recognition_threshold: 0.9YOLO Model Selection for P100For YOLO models with ONNX on GPU, several options are supported(2): YOLOv9: Supported with the yolo-generic model type(2). Configuration example: detectors:
onnx:
type: onnx
device: GPU
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.txtYOLO-NAS: Also supported but may have different performance characteristics(2). Model size consideration: Your current 416x416 model may be oversized for your needs. The documentation shows examples using 320x320 models(2), which would reduce GPU load significantly and leave headroom for face recognition processing. The P100's 16GB VRAM should handle multiple models simultaneously. Consider using a smaller detect resolution (320x320) to reduce GPU saturation and allow the CPU-based face detection to process frames more efficiently. Important: When using Frigate+ models, you should not define model parameters in your config except for 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
Have you uploaded at least one face? This is required. See the official docs: https://docs.frigate.video/configuration/face_recognition#usage |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
|
@hawkeye217 go2rtc: lpr: cameras: cam2: cam3: cam4: cam5: cam6: cam7: cam8: cam9: detectors: model: detect: version: 0.17-0 face_recognition: semantic_search: classification: |
Beta Was this translation helpful? Give feedback.
-
|
I've already tried using small but it still doesn't work. Also, cam9 detects people perfectly fine - detection is enabled and works very well |
Beta Was this translation helpful? Give feedback.


Uh oh!
There was an error while loading. Please reload this page.
-
Hi community,
Setup: Frigate 0.17-0 on Dell R730xd + Tesla P100 16GB, 9 Dahua+PTZ cameras, go2rtc RTSP restream, ONNX detector GPU.
Issue 1 - Face Recognition: Perfect person detection on cam9 (PTZ, "corridoio" zone working, debug shows stable person boxes >0.7 score), BUT Face Library always shows "No recent face recognition attempts". Zero faces extracted (known/unknown) despite frontal people at 2-5m.
Cam9 config:
text
cameras:
cam9:
ffmpeg:
hwaccel_args: preset-nvidia-h264
inputs: [rtsp://127.0.0.1:8554/cam9]
detect:
enabled: true
width: 1280
height: 720
objects:
track: [person]
filters:
person: {min_score: 0.5, threshold: 0.7}
motion:
threshold: 60
contour_area: 100
improve_contrast: true
face_recognition:
enabled: true
model_size: small # tested large
min_area: 500 # tested 50-200
recognition_threshold: 0.9
save_attempts: 200
blur_confidence_filter: true
detectors:
onnx: {type: onnx, device: GPU}
model:
model_type: yolo-generic
width: 416
height: 416
path: /models/yolo11s416.onnx # COCO-80
Tests: GPU <50% (nvidia-smi), no FaceNet/ONNX errors, api/stats face_detection=0, person events working.
Issue 2 - YOLO for P100: Current yolo11s416.onnx ~80FPS but saturates GPU, blocks face_recognition.
Questions:
Why zero faces extracted from person tracks? YOLO COCO lacks "face" class but docs say face_recognition should work standalone. Need custom model/Frigate+?
Best YOLO ONNX for P100 16GB server dell730xd?
Real P100 performance: FPS/VRAM usage on similar setups?
Logs: "cam9 track ['face'] not supported by model" (removed → same issue).
Debug screenshots (cam9+person in frame) available. Thanks!
yolo1
Beta Was this translation helpful? Give feedback.
All reactions