Ahsen Khaliq commited on
Commit
19ef211
1 Parent(s): a66d842

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,4 +19,4 @@ title = "DeepFace"
19
  description = "Gradio demo for DeepFace for face verification: verifies face pairs as same person or different persons. To use it, simply upload your images, or click one of the examples to load them. Read more at the links below."
20
  article = "<p style='text-align: center'><a href='https://github.com/serengil/deepface' target='_blank'>Github Repo</a></p>"
21
 
22
- gr.Interface(inference,["image","image"],"label",enable_queue=True,examples=examples, title=title,description=description,article=article).launch(debug=True)
19
  description = "Gradio demo for DeepFace for face verification: verifies face pairs as same person or different persons. To use it, simply upload your images, or click one of the examples to load them. Read more at the links below."
20
  article = "<p style='text-align: center'><a href='https://github.com/serengil/deepface' target='_blank'>Github Repo</a></p>"
21
 
22
+ gr.Interface(inference,["image","image"],gr.outputs.Label(type='value'),enable_queue=True,examples=examples, title=title,description=description,article=article).launch(debug=True)