Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,7 @@ title = "DeepFace"
|
|
16 |
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."
|
17 |
examples=[["10Jan_1.jpeg"],["10Jan_2.jpeg"]]
|
18 |
|
19 |
-
facial_attribute_demo = gr.Interface(get_deepface_verify, ["image","image"],
|
|
|
20 |
|
21 |
facial_attribute_demo.launch(debug=True)
|
|
|
16 |
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."
|
17 |
examples=[["10Jan_1.jpeg"],["10Jan_2.jpeg"]]
|
18 |
|
19 |
+
facial_attribute_demo = gr.Interface(get_deepface_verify, inputs = ["image","image"],outputs="json",title=title,
|
20 |
+
description=description,enable_queue=True,examples=[["10Jan_1.jpeg"]],cache_examples=False)
|
21 |
|
22 |
facial_attribute_demo.launch(debug=True)
|