Robledo Gularte Gonçalves commited on
Commit
1527622
·
1 Parent(s): badd06b

remove examples code

Browse files
Files changed (1) hide show
  1. app.py +11 -11
app.py CHANGED
@@ -1105,17 +1105,17 @@ with gr.Blocks(
1105
  outputs=[textured_model_output]
1106
  )
1107
 
1108
- with gr.Row():
1109
- examples = gr.Examples(
1110
- examples=[
1111
- f"./examples/{image}"
1112
- for image in os.listdir(f"./examples/")
1113
- ],
1114
- fn=run_full,
1115
- inputs=[image_prompts],
1116
- outputs=[seg_image, model_output, textured_model_output],
1117
- cache_examples=False,
1118
- )
1119
 
1120
  demo.load(start_session)
1121
  demo.unload(end_session)
 
1105
  outputs=[textured_model_output]
1106
  )
1107
 
1108
+ # with gr.Row():
1109
+ # examples = gr.Examples(
1110
+ # examples=[
1111
+ # f"./examples/{image}"
1112
+ # for image in os.listdir(f"./examples/")
1113
+ # ],
1114
+ # fn=run_full,
1115
+ # inputs=[image_prompts],
1116
+ # outputs=[seg_image, model_output, textured_model_output],
1117
+ # cache_examples=False,
1118
+ # )
1119
 
1120
  demo.load(start_session)
1121
  demo.unload(end_session)