Spaces:
Sleeping
Sleeping
Separating outputs of predicted label and plot
Browse files
app.py
CHANGED
|
@@ -73,6 +73,6 @@ with gr.Blocks(css=css) as demo:
|
|
| 73 |
output_label = gr.Label(label="Predicted ASL Sign")
|
| 74 |
output_plot = gr.Plot(label="Class Probabilities")
|
| 75 |
|
| 76 |
-
input_img.stream(predict_asl, [input_img], [output_label], time_limit=300, stream_every=0.5)
|
| 77 |
|
| 78 |
demo.launch()
|
|
|
|
| 73 |
output_label = gr.Label(label="Predicted ASL Sign")
|
| 74 |
output_plot = gr.Plot(label="Class Probabilities")
|
| 75 |
|
| 76 |
+
input_img.stream(predict_asl, [input_img], [output_label, output_plot], time_limit=300, stream_every=0.5)
|
| 77 |
|
| 78 |
demo.launch()
|