Spaces:
Running
on
Zero
Running
on
Zero
sd
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ def find_similar_faces(uploaded_image):
|
|
49 |
text_summary = ""
|
50 |
for sim, name, img in top_matches:
|
51 |
caption = f"{name} - Similitud: {sim:.2f}"
|
52 |
-
gallery_items.append(
|
53 |
text_summary += caption + "\n"
|
54 |
|
55 |
return gallery_items, text_summary
|
|
|
49 |
text_summary = ""
|
50 |
for sim, name, img in top_matches:
|
51 |
caption = f"{name} - Similitud: {sim:.2f}"
|
52 |
+
gallery_items.append((img, caption))
|
53 |
text_summary += caption + "\n"
|
54 |
|
55 |
return gallery_items, text_summary
|