Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,11 +2,9 @@ import gradio as gr
|
|
2 |
|
3 |
def greet(name, intensity):
|
4 |
return "Hello " * intensity + name + "!"
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
)
|
11 |
-
|
12 |
-
demo.launch()
|
|
|
2 |
|
3 |
def greet(name, intensity):
|
4 |
return "Hello " * intensity + name + "!"
|
5 |
+
|
6 |
+
with gr.Blocks() as demo:
|
7 |
+
with gr.Row():
|
8 |
+
gr.Text("lion.jpg", scale=2)
|
9 |
+
gr.Text("tiger.jpg", scale=1)
|
10 |
+
demo.launch()
|
|
|
|