vibs08 commited on
Commit
27a98db
·
verified ·
1 Parent(s): 842b474

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -12
app.py CHANGED
@@ -240,18 +240,18 @@ with gr.Blocks() as demo:
240
  interactive=False,
241
  )
242
  gr.Markdown("Note: The model shown here has a darker appearance. Download to get correct results.")
243
- with gr.Row(variant="panel"):
244
- gr.Examples(
245
- examples=[
246
- os.path.join("examples", img_name) for img_name in sorted(os.listdir("examples"))
247
- ],
248
- inputs=[input_image],
249
- outputs=[processed_image, output_model_obj, output_model_glb],
250
- cache_examples=True,
251
- fn=partial(run_example, do_remove_background=True, foreground_ratio=0.85, mc_resolution=256),
252
- label="Examples",
253
- examples_per_page=20
254
- )
255
  submit.click(fn=check_input_image, inputs=[input_image, text_prompt]).success(
256
  fn=run_example,
257
  inputs=[input_image,text_prompt, do_remove_background, foreground_ratio, mc_resolution],
 
240
  interactive=False,
241
  )
242
  gr.Markdown("Note: The model shown here has a darker appearance. Download to get correct results.")
243
+ # with gr.Row(variant="panel"):
244
+ # gr.Examples(
245
+ # examples=[
246
+ # os.path.join("examples", img_name) for img_name in sorted(os.listdir("examples"))
247
+ # ],
248
+ # inputs=[input_image],
249
+ # outputs=[processed_image, output_model_obj, output_model_glb],
250
+ # cache_examples=True,
251
+ # fn=partial(run_example, do_remove_background=True, foreground_ratio=0.85, mc_resolution=256),
252
+ # label="Examples",
253
+ # examples_per_page=20
254
+ # )
255
  submit.click(fn=check_input_image, inputs=[input_image, text_prompt]).success(
256
  fn=run_example,
257
  inputs=[input_image,text_prompt, do_remove_background, foreground_ratio, mc_resolution],