Zhu-FaceOnLive commited on
Commit
45d25b8
Β·
verified Β·
1 Parent(s): 105168b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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.HTML(MARKDOWN3)
232
- gr.Examples(['examples/1.jpg', 'examples/2.jpg'], inputs=image, cache_examples=True, fn=search_face_examples, outputs=[output, col1, col2])
 
 
 
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.")