Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.
|
| 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()
|