merve HF staff commited on
Commit
06c201a
1 Parent(s): e03948d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -7
app.py CHANGED
@@ -46,13 +46,6 @@ with gr.Blocks(css=css) as demo:
46
  output_2 = gr.Image(type="pil", label="DPT with BeiT Backbone")
47
  output_3 = gr.Image(type="pil", label="Depth Anything")
48
 
49
- gr.Examples([["bee.jpg"]],
50
- inputs = input_img,
51
- outputs = [output_1, output_2, output_3],
52
- fn=infer,
53
- cache_examples=True,
54
- label='Click on any Examples below to get depth estimation results quickly 👇'
55
- )
56
 
57
  input_img.change(infer, [input_img], [output_1, output_2, output_3])
58
 
 
46
  output_2 = gr.Image(type="pil", label="DPT with BeiT Backbone")
47
  output_3 = gr.Image(type="pil", label="Depth Anything")
48
 
 
 
 
 
 
 
 
49
 
50
  input_img.change(infer, [input_img], [output_1, output_2, output_3])
51