Spaces:
Runtime error
Runtime error
NagaSaiAbhinay
commited on
Commit
•
cfd0d3c
1
Parent(s):
61a2746
Disable Caching to speed up app launch.
Browse filesSpace takes longer than 30 mins to launch. Disabling Caching to speed up a bit.
app.py
CHANGED
@@ -53,6 +53,6 @@ demo_app = gr.Interface(
|
|
53 |
title=title,
|
54 |
theme='huggingface',
|
55 |
examples=examples,
|
56 |
-
cache_examples=
|
57 |
)
|
58 |
demo_app.launch(debug=True, enable_queue=True)
|
|
|
53 |
title=title,
|
54 |
theme='huggingface',
|
55 |
examples=examples,
|
56 |
+
cache_examples=False
|
57 |
)
|
58 |
demo_app.launch(debug=True, enable_queue=True)
|