Remove hardcoded face name

This commit is contained in:
Nicolas Mowen
2024-11-06 11:40:40 -07:00
parent be856455f4
commit bfa95c2062

View File

@@ -487,7 +487,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: