Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -228,8 +228,11 @@ with gr.Blocks(css=custom_css, head=head, delete_cache=(3600, 3600)) as demo:
|
|
228 |
premium_search_button = gr.Button("π Unlock Deep Search Now!", elem_classes="button-gradient", link=PREMIUM_CHECKOUT)
|
229 |
with gr.Column():
|
230 |
face_search_button = gr.Button("π Free Face Search")
|
231 |
-
gr.
|
232 |
-
|
|
|
|
|
|
|
233 |
|
234 |
with col2.render():
|
235 |
gr.Markdown("> ### **β οΈ Reminder:** Export images before refreshing the page by clicking the 'Export Images' button.")
|
|
|
228 |
premium_search_button = gr.Button("π Unlock Deep Search Now!", elem_classes="button-gradient", link=PREMIUM_CHECKOUT)
|
229 |
with gr.Column():
|
230 |
face_search_button = gr.Button("π Free Face Search")
|
231 |
+
with gr.Row():
|
232 |
+
with gr.Column():
|
233 |
+
gr.Examples(['examples/1.jpg', 'examples/2.jpg'], inputs=image, cache_examples=True, fn=search_face_examples, outputs=[output, col1, col2])
|
234 |
+
with gr.Column():
|
235 |
+
gr.HTML(MARKDOWN3)
|
236 |
|
237 |
with col2.render():
|
238 |
gr.Markdown("> ### **β οΈ Reminder:** Export images before refreshing the page by clicking the 'Export Images' button.")
|