Spaces:
Runtime error
Runtime error
Linoy Tsaban
commited on
Commit
·
e6dd98b
1
Parent(s):
91668c6
Update app.py
Browse files
app.py
CHANGED
|
@@ -171,9 +171,9 @@ with gr.Blocks(css='style.css') as demo:
|
|
| 171 |
do_inversion = gr.State(value=True)
|
| 172 |
with gr.Row():
|
| 173 |
input_image = gr.Image(label="Input Image", interactive=True)
|
| 174 |
-
input_image.style(height=
|
| 175 |
output_image = gr.Image(label=f"Edited Image", interactive=False)
|
| 176 |
-
output_image.style(height=
|
| 177 |
|
| 178 |
with gr.Row():
|
| 179 |
tar_prompt = gr.Textbox(lines=1, label="Describe your desired edited output", interactive=True)
|
|
|
|
| 171 |
do_inversion = gr.State(value=True)
|
| 172 |
with gr.Row():
|
| 173 |
input_image = gr.Image(label="Input Image", interactive=True)
|
| 174 |
+
input_image.style(height=365, width=365)
|
| 175 |
output_image = gr.Image(label=f"Edited Image", interactive=False)
|
| 176 |
+
output_image.style(height=365, width=365)
|
| 177 |
|
| 178 |
with gr.Row():
|
| 179 |
tar_prompt = gr.Textbox(lines=1, label="Describe your desired edited output", interactive=True)
|