Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -133,10 +133,12 @@ fn=edict, inputs=["image",
|
|
133 |
],
|
134 |
"""
|
135 |
iface = gr.Interface(fn=lambda x: x,
|
136 |
-
inputs=[
|
137 |
-
|
138 |
-
|
|
|
|
|
139 |
description=description,
|
140 |
article=article,
|
141 |
-
cache_examples=
|
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()
|