Spaces:
Build error
Build error
interactive=False
Browse files
app.py
CHANGED
@@ -54,10 +54,10 @@ with gr.Blocks() as demo:
|
|
54 |
selected_pixels = gr.State([])
|
55 |
with gr.Row():
|
56 |
input_img = gr.Image(label="Input", shape=(512, 512))
|
57 |
-
mask_img = gr.Image(label="Mask")
|
58 |
-
seg_img = gr.Image(label="Segmentation")
|
59 |
-
output_img = gr.Image(label="Output")
|
60 |
-
|
61 |
with gr.Row():
|
62 |
prompt_text = gr.Textbox(lines=1, label="Prompt")
|
63 |
negative_prompt_text = gr.Textbox(lines=1, label="Negative Prompt")
|
|
|
54 |
selected_pixels = gr.State([])
|
55 |
with gr.Row():
|
56 |
input_img = gr.Image(label="Input", shape=(512, 512))
|
57 |
+
mask_img = gr.Image(label="Mask", interactive=False)
|
58 |
+
seg_img = gr.Image(label="Segmentation", interactive=False)
|
59 |
+
output_img = gr.Image(label="Output", interactive=False)
|
60 |
+
g
|
61 |
with gr.Row():
|
62 |
prompt_text = gr.Textbox(lines=1, label="Prompt")
|
63 |
negative_prompt_text = gr.Textbox(lines=1, label="Negative Prompt")
|