Spaces:
Runtime error
Runtime error
blaise
commited on
Commit
·
bbbaee8
1
Parent(s):
a06bf32
added a title and description
Browse files
app.py
CHANGED
@@ -14,6 +14,8 @@ interface = gr.Interface(fn=predict,
|
|
14 |
inputs= [gr.Image(type="pil", source="webcam"),
|
15 |
gr.Image(type="pil", source="webcam")],
|
16 |
outputs= [gr.Number(label="Similarity"),
|
17 |
-
gr.Textbox(label="Message")]
|
|
|
|
|
18 |
)
|
19 |
interface.launch()
|
|
|
14 |
inputs= [gr.Image(type="pil", source="webcam"),
|
15 |
gr.Image(type="pil", source="webcam")],
|
16 |
outputs= [gr.Number(label="Similarity"),
|
17 |
+
gr.Textbox(label="Message")],
|
18 |
+
title='Face Verification',
|
19 |
+
description='Use your phone camera || Take two pictures || Compare their similarity'
|
20 |
)
|
21 |
interface.launch()
|