onursavas commited on
Commit
d12524b
·
1 Parent(s): 4d03389

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -8,14 +8,11 @@ def flip_text(x):
8
  demo = gr.Blocks()
9
 
10
  with demo:
11
- gr.Markdown(
12
- """
13
- # PaddleOCR v4
14
- """
15
- )
16
  with gr.Row():
17
  with gr.Column():
18
  input_image = gr.Image()
 
19
  input_button = gr.Button()
20
  with gr.Column():
21
  output_image = gr.Image()
 
8
  demo = gr.Blocks()
9
 
10
  with demo:
11
+ gr.HTML("<h1>PaddleOCR v4")
 
 
 
 
12
  with gr.Row():
13
  with gr.Column():
14
  input_image = gr.Image()
15
+ input_checkbox = gr.CheckboxGroup(["English", "Chinese (Simplified)", "Russian", "Arabic"], label="Languages"),
16
  input_button = gr.Button()
17
  with gr.Column():
18
  output_image = gr.Image()