kdevoe commited on
Commit
abb314b
·
verified ·
1 Parent(s): ea6ac98

Separating outputs of predicted label and plot

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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()