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

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +23 -0
app.py ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+
4
+ def flip_text(x):
5
+ return x[::-1]
6
+
7
+
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()
22
+
23
+ demo.launch()