Remove hardcoded face name

This commit is contained in:
Nicolas Mowen 2024-11-06 11:40:40 -07:00
parent 98eb6a9b54
commit 6a3ff7e065

View File

@ -458,7 +458,7 @@ class EmbeddingMaintainer(threading.Thread):
logger.debug("Not processing face due to error creating cropped image.")
return
embedding = self.embeddings.embed_face("nick", webp.tobytes(), upsert=True)
embedding = self.embeddings.embed_face("unknown", webp.tobytes(), upsert=False)
res = self.face_classifier.classify_face(embedding)
if not res: