Spaces:
Sleeping
Sleeping
Upload with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -5,8 +5,7 @@ emoji: 🔥
|
|
| 5 |
colorFrom: indigo
|
| 6 |
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
-
sdk_version: 3.
|
| 9 |
-
|
| 10 |
-
app_file: app.py
|
| 11 |
pinned: false
|
| 12 |
---
|
|
|
|
| 5 |
colorFrom: indigo
|
| 6 |
colorTo: indigo
|
| 7 |
sdk: gradio
|
| 8 |
+
sdk_version: 3.4.1
|
| 9 |
+
app_file: run.py
|
|
|
|
| 10 |
pinned: false
|
| 11 |
---
|
run.py
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
|
| 3 |
+
|
| 4 |
+
demo = gr.Blocks()
|
| 5 |
+
|
| 6 |
+
with demo:
|
| 7 |
+
with gr.Row():
|
| 8 |
+
gr.Image(interactive=True)
|
| 9 |
+
gr.Image()
|
| 10 |
+
with gr.Row():
|
| 11 |
+
gr.Textbox(label="Text")
|
| 12 |
+
gr.Number(label="Count")
|
| 13 |
+
gr.Radio(choices=["One", "Two"])
|
| 14 |
+
with gr.Row():
|
| 15 |
+
with gr.Row():
|
| 16 |
+
with gr.Column():
|
| 17 |
+
gr.Textbox(label="Text")
|
| 18 |
+
gr.Number(label="Count")
|
| 19 |
+
gr.Radio(choices=["One", "Two"])
|
| 20 |
+
gr.Image()
|
| 21 |
+
with gr.Column():
|
| 22 |
+
gr.Image(interactive=True)
|
| 23 |
+
gr.Image()
|
| 24 |
+
gr.Image()
|
| 25 |
+
gr.Textbox(label="Text")
|
| 26 |
+
gr.Number(label="Count")
|
| 27 |
+
gr.Radio(choices=["One", "Two"])
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
if __name__ == "__main__":
|
| 31 |
+
demo.launch()
|