Omnibus commited on
Commit
d0f9675
β€’
1 Parent(s): 1de5d0b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -27,6 +27,6 @@ with gr.Blocks() as robot:
27
  out_im=gr.Image()
28
  with gr.Row():
29
  out_txt=gr.Textbox(lines=8)
30
- data_f=gr.outputs.Dataframe(headers=['text', 'confidence'])
31
  go_btn.click(detect,im,[out_im,out_txt,data_f])
32
  robot.queue(concurrency_count=10).launch()
 
27
  out_im=gr.Image()
28
  with gr.Row():
29
  out_txt=gr.Textbox(lines=8)
30
+ data_f=gr.Dataframe(headers=['text', 'confidence'])
31
  go_btn.click(detect,im,[out_im,out_txt,data_f])
32
  robot.queue(concurrency_count=10).launch()