Object Classification Problems #22303
Replies: 2 comments 3 replies
-
|
I cannot find specific troubleshooting steps for your exact scenario in the available sources. However, based on the object classification documentation, here are some important points that may help: Object classification uses a two-step verification process before assigning a sub label(1):
To debug your classification model, enable debug logging by adding this to your configuration(1): logger:
default: info
logs:
frigate.data_processing.real_time.custom_classification: debugThe debug logs will show classification probabilities for each attempt, whether scores meet the threshold requirement, consensus calculations and when assignments are made, and object classification history and weighted scores(1). For improving the model, the documentation recommends(1):
You may also want to check if you have the optional ** 📚 Sources: Have another question? Just tag @inkeep. |
Beta Was this translation helpful? Give feedback.
-
|
The main issue here is that object classification really isn't the right tool for identifying individual people, especially in the context of a workplace. Object classification trains on the full person bounding box - meaning the model is learning from clothing, background, body shape, and other contextual details that change constantly. Your results are consistently wrong because the model can't reliably distinguish between employees based on those features. What you want is Frigate's built-in Face Recognition, which uses an ArcFace-based embedding model specifically designed for identifying individuals by their facial features. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I have created new sublabel classification as "Employee classification" under "Classification" as below

I have selected like 100 images per person and trained model. For each employee, I have selected different angles from different cames as below

? Here is "Hüseyin Cam" labed objects as you can see below this with trained with 100 images which is shown on previous imge.

But result is always wrong for all employess. Am I doing something wrong
Beta Was this translation helpful? Give feedback.
All reactions