bramw commited on
Commit
2370152
·
1 Parent(s): 1748843

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -4
app.py CHANGED
@@ -133,10 +133,12 @@ fn=edict, inputs=["image",
133
  ],
134
  """
135
  iface = gr.Interface(fn=lambda x: x,
136
- inputs=["Image"]
137
- examples = examples,
138
- outputs="image",
 
 
139
  description=description,
140
  article=article,
141
- cache_examples=True)
142
  iface.launch()
 
133
  ],
134
  """
135
  iface = gr.Interface(fn=lambda x: x,
136
+ inputs=[
137
+ gr.Slider(0, 10, value=3, step=0.5),
138
+ ],
139
+ # examples = examples,
140
+ # outputs="image",
141
  description=description,
142
  article=article,
143
+ cache_examples=False)
144
  iface.launch()