Spaces:
Runtime error
Runtime error
bugfix (#22)
Browse files- bugfix (348b633435c37b87eb4a0d9a5a073cc85ce6775e)
Co-authored-by: Banuka Nanayakkara <Banuka@users.noreply.huggingface.co>
app.py
CHANGED
|
@@ -76,7 +76,7 @@ with gr.Blocks(css=css) as demo:
|
|
| 76 |
fn=predict_video,
|
| 77 |
inputs=[video_in, audio_in],
|
| 78 |
outputs=[video_out, text_out],
|
| 79 |
-
cache_examples=
|
| 80 |
)
|
| 81 |
|
| 82 |
video_in.change(
|
|
|
|
| 76 |
fn=predict_video,
|
| 77 |
inputs=[video_in, audio_in],
|
| 78 |
outputs=[video_out, text_out],
|
| 79 |
+
cache_examples= False # Cache examples for faster loading
|
| 80 |
)
|
| 81 |
|
| 82 |
video_in.change(
|