hshetty commited on
Commit
eea360b
·
1 Parent(s): 6c064b0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -0
app.py CHANGED
@@ -17,6 +17,8 @@ def predict(im1, im2):
17
  interface = gr.Interface(fn=predict,
18
  inputs= [gr.Image(type="pil", source="webcam"),
19
  gr.Image(type="pil",source="webcam")],
 
 
20
  outputs= [gr.Number(label="Similarity"),
21
  gr.Textbox(label="Message")]
22
  )
 
17
  interface = gr.Interface(fn=predict,
18
  inputs= [gr.Image(type="pil", source="webcam"),
19
  gr.Image(type="pil",source="webcam")],
20
+ title="FaceID App",
21
+ description="This is a FaceID app using Sentence Transformer as part of week 3 end to end vision application project on CoRise by Abubakar Abid!",
22
  outputs= [gr.Number(label="Similarity"),
23
  gr.Textbox(label="Message")]
24
  )