Paolo-Fraccaro commited on
Commit
f96a3c0
·
1 Parent(s): 0136681

remove examples

Browse files
Files changed (1) hide show
  1. app.py +10 -10
app.py CHANGED
@@ -223,15 +223,15 @@ with gr.Blocks() as demo:
223
 
224
  btn.click(fn=func, inputs=inp, outputs=[inp1, inp2, inp3, out])
225
 
226
- with gr.Row():
227
- gr.Examples(examples=["chip_102_345_merged.tif",
228
- "chip_104_104_merged.tif",
229
- "chip_109_421_merged.tif"],
230
- inputs=inp,
231
- outputs=[inp1, inp2, inp3, out],
232
- preprocess=preprocess_example,
233
- fn=func,
234
- cache_examples=True,
235
- )
236
 
237
  demo.launch()
 
223
 
224
  btn.click(fn=func, inputs=inp, outputs=[inp1, inp2, inp3, out])
225
 
226
+ # with gr.Row():
227
+ # gr.Examples(examples=["chip_102_345_merged.tif",
228
+ # "chip_104_104_merged.tif",
229
+ # "chip_109_421_merged.tif"],
230
+ # inputs=inp,
231
+ # outputs=[inp1, inp2, inp3, out],
232
+ # preprocess=preprocess_example,
233
+ # fn=func,
234
+ # cache_examples=True,
235
+ # )
236
 
237
  demo.launch()