Spaces:
Running
on
A10G
Running
on
A10G
Update app.py
Browse files
app.py
CHANGED
@@ -172,10 +172,8 @@ with gr.Blocks(css='style.css') as demo:
|
|
172 |
zs = gr.State()
|
173 |
do_inversion = gr.State(value=True)
|
174 |
with gr.Row():
|
175 |
-
input_image = gr.Image(label="Input Image", interactive=True)
|
176 |
-
|
177 |
-
output_image = gr.Image(label=f"Edited Image", interactive=False)
|
178 |
-
output_image.style(height=365, width=365)
|
179 |
|
180 |
with gr.Row():
|
181 |
tar_prompt = gr.Textbox(lines=1, label="Describe your desired edited output", interactive=True)
|
|
|
172 |
zs = gr.State()
|
173 |
do_inversion = gr.State(value=True)
|
174 |
with gr.Row():
|
175 |
+
input_image = gr.Image(label="Input Image", interactive=True, height=365, width=365)
|
176 |
+
output_image = gr.Image(label=f"Edited Image", interactive=False, height=365, width=365)
|
|
|
|
|
177 |
|
178 |
with gr.Row():
|
179 |
tar_prompt = gr.Textbox(lines=1, label="Describe your desired edited output", interactive=True)
|