Spaces:
Build error
Build error
Commit ·
ae35c80
1
Parent(s): a6fd2ed
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,31 +1,44 @@
|
|
| 1 |
-
import numpy as np
|
| 2 |
-
import gradio as gr
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
|
| 5 |
-
def
|
| 6 |
-
|
| 7 |
|
| 8 |
|
| 9 |
-
|
| 10 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 11 |
|
|
|
|
|
|
|
| 12 |
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
with gr.Tab("Flip Text"):
|
| 16 |
-
text_input = gr.Textbox()
|
| 17 |
-
text_output = gr.Textbox()
|
| 18 |
-
text_button = gr.Button("Flip")
|
| 19 |
-
with gr.Tab("Flip Image"):
|
| 20 |
-
with gr.Row():
|
| 21 |
-
image_input = gr.Image()
|
| 22 |
-
image_output = gr.Image()
|
| 23 |
-
image_button = gr.Button("Flip")
|
| 24 |
|
| 25 |
-
|
| 26 |
-
|
|
|
|
| 27 |
|
| 28 |
-
|
| 29 |
-
|
|
|
|
| 30 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 31 |
demo.launch()
|
|
|
|
| 1 |
+
# import numpy as np
|
| 2 |
+
# import gradio as gr
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
# def flip_text(x):
|
| 6 |
+
# return x[::-1]
|
| 7 |
|
| 8 |
|
| 9 |
+
# def flip_image(x):
|
| 10 |
+
# return np.fliplr(x)
|
| 11 |
|
| 12 |
|
| 13 |
+
# with gr.Blocks() as demo:
|
| 14 |
+
# gr.Markdown("Flip text or image files using this demo.")
|
| 15 |
+
# with gr.Tab("Flip Text"):
|
| 16 |
+
# text_input = gr.Textbox()
|
| 17 |
+
# text_output = gr.Textbox()
|
| 18 |
+
# text_button = gr.Button("Flip")
|
| 19 |
+
# with gr.Tab("Flip Image"):
|
| 20 |
+
# with gr.Row():
|
| 21 |
+
# image_input = gr.Image()
|
| 22 |
+
# image_output = gr.Image()
|
| 23 |
+
# image_button = gr.Button("Flip")
|
| 24 |
|
| 25 |
+
# with gr.Accordion("Open for More!"):
|
| 26 |
+
# gr.Markdown("Look at me...")
|
| 27 |
|
| 28 |
+
# text_button.click(flip_text, inputs=text_input, outputs=text_output)
|
| 29 |
+
# image_button.click(flip_image, inputs=image_input, outputs=image_output)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
+
# demo.launch()
|
| 32 |
+
|
| 33 |
+
import gradio as gr
|
| 34 |
|
| 35 |
+
def greet(website, question):
|
| 36 |
+
greeting = f"{name} {lastname}"
|
| 37 |
+
return greeting
|
| 38 |
|
| 39 |
+
demo = gr.Interface(
|
| 40 |
+
fn=greet,
|
| 41 |
+
inputs=["text", "text"],
|
| 42 |
+
outputs=["text"]
|
| 43 |
+
)
|
| 44 |
demo.launch()
|