Not all recognized faces are being shown in people tab or mobile app
💻Web☑️Ready❓Question📱Mobile🗄️Server
I am trying to find the best face recognition settings for my immich instance, however I am running into some issue as I cannot see all the recognized faces neither on the web nor on the app.
The steps I have followed so far are: - Set desired settings: Facial recognition model - antelopev2 Minimum detection score - 0.72 Maximum recognition distance - 0.4 Minimum recognized faces - 20 - After I proceeded to delete all the previously existing faces from the DB following this guide (https://docs.immich.app/guides/database-queries#persons) and changing the query to
DELETE FROM "person" WHERE "ownerId" = '25c42edf-abf9-4616-b856-2fe5072485cd';
DELETE FROM "person" WHERE "ownerId" = '25c42edf-abf9-4616-b856-2fe5072485cd';
- I then re-run the face detection (reset), generate thumbnails (all) and facial recognition (reset) jobs in that order. - Waited for the job to finish
As a result I got 92 recognized faces, this shows up in the web as (People (92)) and if I run the command
SELECT COUNT (*) FROM person WHERE "ownerId" = '25c42edf-abf9-4616-b856-2fe5072485cd'
SELECT COUNT (*) FROM person WHERE "ownerId" = '25c42edf-abf9-4616-b856-2fe5072485cd'
The issue is, I can only see 55 faces on the web and 73 faces on my app, I have tried the process several times now but I can't get all the faces to show up, has anyone any ideas?