Spaces:
Runtime error
Runtime error
Linoy Tsaban
commited on
Commit
•
2780232
1
Parent(s):
3bcf222
Update app.py
Browse files
app.py
CHANGED
@@ -131,9 +131,9 @@ with gr.Blocks(css='style.css') as demo:
|
|
131 |
wts = gr.State(value=None)
|
132 |
with gr.Row():
|
133 |
input_image = gr.Image(label="Input Image", interactive=True)
|
134 |
-
input_image.style(height=
|
135 |
output_image = gr.Image(label=f"Edited Image", interactive=False)
|
136 |
-
output_image.style(height=
|
137 |
|
138 |
with gr.Row():
|
139 |
tar_prompt = gr.Textbox(lines=1, label="Describe the image yout want", interactive=True, placeholder="tip: use concepts from the original image for the description")
|
|
|
131 |
wts = gr.State(value=None)
|
132 |
with gr.Row():
|
133 |
input_image = gr.Image(label="Input Image", interactive=True)
|
134 |
+
input_image.style(height=256, width=256)
|
135 |
output_image = gr.Image(label=f"Edited Image", interactive=False)
|
136 |
+
output_image.style(height=256, width=256)
|
137 |
|
138 |
with gr.Row():
|
139 |
tar_prompt = gr.Textbox(lines=1, label="Describe the image yout want", interactive=True, placeholder="tip: use concepts from the original image for the description")
|