-
|
We've been using CompreFace in combination with Frigate / Double-Take for some days now and we have many false positives. So my assumption is this that I probably made an error training the detection algorithm. Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
Hi Markus, There are two possible ways of facial recognition. The first one is simple, just use CompreFace without additional logic. Then I would recommend:
You can improve the accuracy if you add additional logic:
As a bonus, I found quite an interesting resource: |
Beta Was this translation helpful? Give feedback.
Hi Markus,
There are two possible ways of facial recognition. The first one is simple, just use CompreFace without additional logic. Then I would recommend:
You can improve the accuracy if you add additional logic:
prediction_count=5parameter. It will return 5 most similar examples. So for example you receive such result: face1: 0.99, face2: 0.98, face2: 0.97, face2:0.95, face2: 0.95. The custom logic should understand…