Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
|
4 |
+
demo = gr.Blocks()
|
5 |
+
|
6 |
+
with demo:
|
7 |
+
with gr.Row():
|
8 |
+
gr.Image(interactive=True, scale=2)
|
9 |
+
gr.Image()
|
10 |
+
with gr.Row():
|
11 |
+
gr.Textbox(label="Text")
|
12 |
+
gr.Number(label="Count", scale=2)
|
13 |
+
gr.Radio(choices=["One", "Two"])
|
14 |
+
with gr.Row():
|
15 |
+
gr.Button("500", scale=0, min_width=500)
|
16 |
+
gr.Button("A", scale=0)
|
17 |
+
gr.Button("grow")
|
18 |
+
with gr.Row():
|
19 |
+
gr.Textbox()
|
20 |
+
gr.Textbox()
|
21 |
+
gr.Button()
|
22 |
+
with gr.Row():
|
23 |
+
with gr.Row():
|
24 |
+
with gr.Column():
|
25 |
+
gr.Textbox(label="Text")
|
26 |
+
gr.Number(label="Count")
|
27 |
+
gr.Radio(choices=["One", "Two"])
|
28 |
+
gr.Image()
|
29 |
+
with gr.Column():
|
30 |
+
gr.Image(interactive=True)
|
31 |
+
gr.Image()
|
32 |
+
gr.Image()
|
33 |
+
gr.Textbox(label="Text")
|
34 |
+
gr.Number(label="Count")
|
35 |
+
gr.Radio(choices=["One", "Two"])
|
36 |
+
|
37 |
+
|
38 |
+
if __name__ == "__main__":
|
39 |
+
demo.launch()
|