Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,13 +17,13 @@ def get_deepface(image):
|
|
17 |
|
18 |
df = DeepFace.find(img_path=image, db_path=db_path)
|
19 |
#print(df.head())
|
20 |
-
return DeepFace.analyze(img_path=
|
21 |
|
22 |
|
23 |
description = "Deepface is a lightweight face recognition and facial attribute analysis (age, gender, emotion and race) framework for python. It is a hybrid face recognition framework wrapping state-of-the-art models: VGG-Face, Google FaceNet, OpenFace, Facebook DeepFace, DeepID, ArcFace and Dlib."
|
24 |
|
25 |
facial_attribute_demo = gr.Interface(
|
26 |
-
fn=
|
27 |
inputs="image",
|
28 |
outputs="json",
|
29 |
title="face recognition and facial attribute analysis (age, gender, emotion and race) framework",
|
|
|
17 |
|
18 |
df = DeepFace.find(img_path=image, db_path=db_path)
|
19 |
#print(df.head())
|
20 |
+
return DeepFace.analyze(img_path=image)
|
21 |
|
22 |
|
23 |
description = "Deepface is a lightweight face recognition and facial attribute analysis (age, gender, emotion and race) framework for python. It is a hybrid face recognition framework wrapping state-of-the-art models: VGG-Face, Google FaceNet, OpenFace, Facebook DeepFace, DeepID, ArcFace and Dlib."
|
24 |
|
25 |
facial_attribute_demo = gr.Interface(
|
26 |
+
fn=get_deepface,
|
27 |
inputs="image",
|
28 |
outputs="json",
|
29 |
title="face recognition and facial attribute analysis (age, gender, emotion and race) framework",
|