DeepDiveDev commited on
Commit
ed210bd
·
verified ·
1 Parent(s): f17394c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -5
app.py CHANGED
@@ -94,15 +94,11 @@ choices = [
94
 
95
  with gr.Blocks(css=css) as iface:
96
  gr.Markdown(f"# {title}")
97
- gr.Markdown(f"## {subtitle}")
98
- gr.Markdown(description)
99
- gr.Markdown(note)
100
- gr.Markdown(alternative_link)
101
  with gr.Row():
102
  with gr.Column(scale=2):
103
  input_image = gr.Image(type="filepath", label="Upload Image")
104
  lang_select = gr.CheckboxGroup(choices=choices, label="Select Languages", value=['hi', 'en'])
105
- ocr_button = gr.Button("Perform OCR")
106
 
107
  with gr.Column(scale=3):
108
  output_image = gr.Image(type="filepath", label="OCR Result")
 
94
 
95
  with gr.Blocks(css=css) as iface:
96
  gr.Markdown(f"# {title}")
 
 
 
 
97
  with gr.Row():
98
  with gr.Column(scale=2):
99
  input_image = gr.Image(type="filepath", label="Upload Image")
100
  lang_select = gr.CheckboxGroup(choices=choices, label="Select Languages", value=['hi', 'en'])
101
+ ocr_button = gr.Button("Submit")
102
 
103
  with gr.Column(scale=3):
104
  output_image = gr.Image(type="filepath", label="OCR Result")