JUGGHM commited on
Commit
0bbee88
·
1 Parent(s): b32440e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -83,9 +83,8 @@ examples = [
83
  ["lions.jpg"]
84
  ]
85
 
86
- demo = gr.Interface(
87
  depth_normal,
88
  inputs=[gr.Image(type='pil', label="Original Image")],
89
  outputs=[gr.Image(type="pil",label="Output Depth")],
90
- title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch(enable_queue=True,cache_examples=True)
91
- demo.launch(enable_queue=True,cache_examples=True)
 
83
  ["lions.jpg"]
84
  ]
85
 
86
+ gr.Interface(
87
  depth_normal,
88
  inputs=[gr.Image(type='pil', label="Original Image")],
89
  outputs=[gr.Image(type="pil",label="Output Depth")],
90
+ title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()