Spaces:
Sleeping
Sleeping
Update
Browse files- app.py +2 -2
- examples/1.jpg +0 -0
- examples/2.jpg +0 -0
- examples/3.jpg +0 -0
- examples/4.jpg +0 -0
app.py
CHANGED
|
@@ -94,12 +94,12 @@ with gr.Blocks() as demo:
|
|
| 94 |
with gr.Row():
|
| 95 |
with gr.Column():
|
| 96 |
compare_face_input1 = gr.Image(type='filepath', height=480)
|
| 97 |
-
gr.Examples(['
|
| 98 |
inputs=compare_face_input1)
|
| 99 |
compare_face_button = gr.Button("Compare Face")
|
| 100 |
with gr.Column():
|
| 101 |
compare_face_input2 = gr.Image(type='filepath', height=480)
|
| 102 |
-
gr.Examples(['
|
| 103 |
inputs=compare_face_input2)
|
| 104 |
with gr.Column():
|
| 105 |
compare_face_output = gr.Image(type="pil", height=150)
|
|
|
|
| 94 |
with gr.Row():
|
| 95 |
with gr.Column():
|
| 96 |
compare_face_input1 = gr.Image(type='filepath', height=480)
|
| 97 |
+
gr.Examples(['examples/1.jpg', 'examples/2.jpg'],
|
| 98 |
inputs=compare_face_input1)
|
| 99 |
compare_face_button = gr.Button("Compare Face")
|
| 100 |
with gr.Column():
|
| 101 |
compare_face_input2 = gr.Image(type='filepath', height=480)
|
| 102 |
+
gr.Examples(['examples/3.jpg', 'examples/4.jpg'],
|
| 103 |
inputs=compare_face_input2)
|
| 104 |
with gr.Column():
|
| 105 |
compare_face_output = gr.Image(type="pil", height=150)
|
examples/1.jpg
ADDED
|
examples/2.jpg
ADDED
|
examples/3.jpg
ADDED
|
examples/4.jpg
ADDED
|