Spaces:
Runtime error
Runtime error
This Pull Request fixes the space by skipping example caching
Browse filesThis space is down because its start is too long. Not generating the examples at startup will speedup the start.
Click on _Merge_ to add this feature.
app.py
CHANGED
|
@@ -139,7 +139,7 @@ interface = gr.Interface(
|
|
| 139 |
2.7 # Noise Level
|
| 140 |
]
|
| 141 |
],
|
| 142 |
-
cache_examples=
|
| 143 |
)
|
| 144 |
|
| 145 |
model, sample_rate, sample_size = load_model()
|
|
|
|
| 139 |
2.7 # Noise Level
|
| 140 |
]
|
| 141 |
],
|
| 142 |
+
cache_examples=False
|
| 143 |
)
|
| 144 |
|
| 145 |
model, sample_rate, sample_size = load_model()
|