Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -15,6 +15,6 @@ title = "DeepFace"
|
|
15 |
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."
|
16 |
examples=[["10Jan_1.jpeg"],["10Jan_2.jpeg"]]
|
17 |
|
18 |
-
facial_attribute_demo = gr.Interface(get_deepface_verify,["image","image", [gr.outputs.Label(label="same person"),gr.outputs.Label(label="distance"),gr.outputs.Label(label="max threshold to verify"),gr.outputs.Label(label="model"),gr.outputs.Label(label="similarity metric")],enable_queue=True,examples=examples,title=title,description=description,theme="dark default")
|
19 |
|
20 |
facial_attribute_demo.launch(debug=True)
|
|
|
15 |
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."
|
16 |
examples=[["10Jan_1.jpeg"],["10Jan_2.jpeg"]]
|
17 |
|
18 |
+
facial_attribute_demo = gr.Interface(get_deepface_verify,["image","image"], [gr.outputs.Label(label="same person"),gr.outputs.Label(label="distance"),gr.outputs.Label(label="max threshold to verify"),gr.outputs.Label(label="model"),gr.outputs.Label(label="similarity metric")],enable_queue=True,examples=examples,title=title,description=description,theme="dark default")
|
19 |
|
20 |
facial_attribute_demo.launch(debug=True)
|