bump gradio, enable cache
Browse files
README.md
CHANGED
@@ -4,7 +4,7 @@ emoji: ⚡
|
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
7 |
-
sdk_version: 2.9.
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
|
|
4 |
colorFrom: blue
|
5 |
colorTo: red
|
6 |
sdk: gradio
|
7 |
+
sdk_version: 2.9.4
|
8 |
app_file: app.py
|
9 |
pinned: false
|
10 |
---
|
app.py
CHANGED
@@ -115,4 +115,4 @@ iface = gr.Interface(fn=process_image,
|
|
115 |
description=description,
|
116 |
examples=examples,
|
117 |
allow_flagging="never")
|
118 |
-
iface.launch(debug=True, enable_queue=
|
|
|
115 |
description=description,
|
116 |
examples=examples,
|
117 |
allow_flagging="never")
|
118 |
+
iface.launch(debug=True, enable_queue=False, cache_examples=True)
|