sotirios-slv commited on
Commit
5e10a9a
1 Parent(s): 5524775

Removed checkbox to aid debugging

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -70,8 +70,8 @@ with gr.Blocks() as demo:
70
  text_out = gr.TextArea(label="OCR output")
71
  with gr.Column():
72
  ner = gr.TextArea(label="Named entities")
73
- with gr.Column():
74
- gr.CheckboxGroup(ner, label="Named entities")
75
 
76
  btn.click(fn=run, inputs=[image_in, lang], outputs=[text_out, ner])
77
 
 
70
  text_out = gr.TextArea(label="OCR output")
71
  with gr.Column():
72
  ner = gr.TextArea(label="Named entities")
73
+ # with gr.Column():
74
+ # gr.CheckboxGroup(ner, label="Named entities")
75
 
76
  btn.click(fn=run, inputs=[image_in, lang], outputs=[text_out, ner])
77