Spaces:
Running
Running
import faiss | |
from helpers import * | |
import gradio as gr | |
import os | |
detector = load_detector() | |
model = load_model() | |
source_imgs = [] | |
for r, _, f in os.walk(os.getcwd() + "/images"): | |
for file in f: | |
if ( | |
(".jpg" in file.lower()) | |
or (".jpeg" in file.lower()) | |
or (".png" in file.lower()) | |
): | |
exact_path = r + "/" + file | |
source_imgs.append(exact_path) | |
source_faces = [] | |
for img in source_imgs: | |
try: | |
source_faces.append(extract_faces(detector, img)[-1]) | |
except: | |
print(f"{img} not found, Skipping.") | |
source_embeddings = get_embeddings(model, source_faces) | |
def find_names(image): | |
imgs = extract_faces(detector, image) | |
embeds = get_embeddings(model, imgs) | |
d = np.zeros((len(source_embeddings), len(embeds))) | |
for i, s in enumerate(source_embeddings): | |
for j, t in enumerate(embeds): | |
d[i][j] = findCosineDistance(s, t) | |
ids = np.argmin(d, axis = 0) | |
names = [] | |
for i in ids: | |
names.append(source_imgs[i].split("/")[-1].split(".")[0]) | |
return ",".join(names) | |
demo = gr.Interface( | |
find_names, | |
gr.Image(type="filepath"), | |
"text", | |
examples = [ | |
os.path.join(os.path.dirname(__file__), "examples/group1.jpg"), | |
os.path.join(os.path.dirname(__file__), "examples/group2.jpg") | |
] | |
) | |
if __name__ == "__main__": | |
demo.launch() |