Spaces:
Sleeping
Sleeping
Model not showing outputs, trying to put time limit back in
Browse files
app.py
CHANGED
|
@@ -80,6 +80,6 @@ with gr.Blocks(css=css) as demo:
|
|
| 80 |
predicted_label, fig = predict_asl(frame)
|
| 81 |
return predicted_label, fig
|
| 82 |
|
| 83 |
-
input_img.stream(gradio_pipeline, [input_img], [output_label, output_plot], stream_every=0.5)
|
| 84 |
|
| 85 |
demo.launch()
|
|
|
|
| 80 |
predicted_label, fig = predict_asl(frame)
|
| 81 |
return predicted_label, fig
|
| 82 |
|
| 83 |
+
input_img.stream(gradio_pipeline, [input_img], [output_label, output_plot], time_limit=300, stream_every=0.5)
|
| 84 |
|
| 85 |
demo.launch()
|