Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -42,10 +42,13 @@ def run(image, model_name):
|
|
42 |
|
43 |
with gr.Blocks() as demo:
|
44 |
with gr.Group():
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
|
|
|
|
|
|
49 |
|
50 |
run_button.click(
|
51 |
fn=run,
|
|
|
42 |
|
43 |
with gr.Blocks() as demo:
|
44 |
with gr.Group():
|
45 |
+
with gr.Row(variant='panel'):
|
46 |
+
with gr.Column(scale=1):
|
47 |
+
image = gr.Image(label="Input image", show_label=False, type="pil", height=320)
|
48 |
+
model_name = gr.Textbox(label="Model name", show_label=False)
|
49 |
+
run_button = gr.Button("Run")
|
50 |
+
with gr.Column(scale=1):
|
51 |
+
result = gr.Model3D(label="Result", show_label=False)
|
52 |
|
53 |
run_button.click(
|
54 |
fn=run,
|