Spaces:
Runtime error
Runtime error
Vishakaraj
commited on
Commit
•
5b6c473
1
Parent(s):
3fad000
Don't cache examples
Browse files
app.py
CHANGED
@@ -131,6 +131,7 @@ demo = gr.Interface(
|
|
131 |
inputs=gr.inputs.Image(),
|
132 |
outputs=[gr.outputs.Image(type="numpy"), gr.outputs.HTML()],
|
133 |
examples=["example_1.jpg", "example_2.jpg"],
|
|
|
134 |
description=description,
|
135 |
)
|
136 |
|
|
|
131 |
inputs=gr.inputs.Image(),
|
132 |
outputs=[gr.outputs.Image(type="numpy"), gr.outputs.HTML()],
|
133 |
examples=["example_1.jpg", "example_2.jpg"],
|
134 |
+
cache_examples=False,
|
135 |
description=description,
|
136 |
)
|
137 |
|