Ahsen Khaliq commited on
Commit
88ce3ac
1 Parent(s): 7182041

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -10,4 +10,9 @@ def inference(image1,image2):
10
  return text
11
 
12
  examples=[['mona.jpeg','mona.jpeg']]
 
 
 
 
 
13
  gr.Interface(inference,["image","image"],"text",enable_queue=True,examples=examples).launch(debug=True)
10
  return text
11
 
12
  examples=[['mona.jpeg','mona.jpeg']]
13
+
14
+ title = "DeepFace"
15
+ 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."
16
+ article = "<p style='text-align: center'><a href='https://github.com/serengil/deepface' target='_blank'>Github Repo</a></p>"
17
+
18
  gr.Interface(inference,["image","image"],"text",enable_queue=True,examples=examples).launch(debug=True)