Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -41,6 +41,13 @@ iface = gr.Interface(
|
|
| 41 |
outputs=gr.Image(type="pil", label="Output Image"),
|
| 42 |
description=description,
|
| 43 |
theme='bethecloud/storj_theme',
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
)
|
| 45 |
|
| 46 |
if __name__ == "__main__":
|
|
|
|
| 41 |
outputs=gr.Image(type="pil", label="Output Image"),
|
| 42 |
description=description,
|
| 43 |
theme='bethecloud/storj_theme',
|
| 44 |
+
examples=[
|
| 45 |
+
["1.png", "Default"],
|
| 46 |
+
["2.png", "Default"],
|
| 47 |
+
["3.jfif", "Default"],
|
| 48 |
+
["4.webp", "Default"]
|
| 49 |
+
],
|
| 50 |
+
cache_examples=True
|
| 51 |
)
|
| 52 |
|
| 53 |
if __name__ == "__main__":
|