kavg commited on
Commit
29ce040
·
verified ·
1 Parent(s): 3d68599

Update app.py

Browse files

removed label of image input since it bocks the image

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -16,5 +16,5 @@ def OCR(image):
16
 
17
  return generated_text
18
 
19
- demo = gr.Interface(fn=OCR, inputs=gr.Image(label="Select an image with Sinhala textline", type="pil"),outputs=gr.Textbox())
20
  demo.launch(debug=True)
 
16
 
17
  return generated_text
18
 
19
+ demo = gr.Interface(fn=OCR, inputs=gr.Image(type="pil"),outputs=gr.Textbox())
20
  demo.launch(debug=True)