chore(server): lower default max recognition distance for facial recognition (#7689)

lower default to 0.5
This commit is contained in:
Mert 2024-03-06 22:20:38 -05:00 committed by GitHub
parent 5dd11ca17a
commit ffaa08e7ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -709,7 +709,7 @@ describe(PersonService.name, () => {
},
{
enabled: true,
maxDistance: 0.6,
maxDistance: 0.5,
minScore: 0.7,
minFaces: 3,
modelName: 'buffalo_l',

View File

@ -75,7 +75,7 @@ export const defaults = Object.freeze<SystemConfig>({
enabled: true,
modelName: 'buffalo_l',
minScore: 0.7,
maxDistance: 0.6,
maxDistance: 0.5,
minFaces: 3,
},
},

View File

@ -76,7 +76,7 @@ const updatedConfig = Object.freeze<SystemConfig>({
enabled: true,
modelName: 'buffalo_l',
minScore: 0.7,
maxDistance: 0.6,
maxDistance: 0.5,
minFaces: 3,
},
},