ipvikas commited on
Commit
8b87aed
·
1 Parent(s): 48845d8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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"],[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")],examples=examples, title=title,description=description,theme="darkdefault")
 
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)