JUGGHM commited on
Commit
b64af5c
1 Parent(s): d934218

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -120,6 +120,6 @@ examples = [
120
 
121
  gr.Interface(
122
  depth_normal,
123
- inputs=[gr.Image(type='pil', label="Original Image"), gr.Dropdown(["vit-small", "vit-large"], label="Model", info="Will support more models later!")],
124
  outputs=[gr.Image(type="pil",label="Output Depth"), gr.Image(type="pil",label="Output Normal")],
125
  title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()
 
120
 
121
  gr.Interface(
122
  depth_normal,
123
+ inputs=[gr.Image(type='pil', label="Original Image"), gr.Dropdown(["vit-small", "vit-large"], label="Model", info="Select a model type", value="vit-large")],
124
  outputs=[gr.Image(type="pil",label="Output Depth"), gr.Image(type="pil",label="Output Normal")],
125
  title=title, description=description, article=article, examples=examples, analytics_enabled=False).launch()