linoyts HF staff commited on
Commit
fe2d1bb
·
verified ·
1 Parent(s): 4a3162f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
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
- input_image.style(height=365, width=365)
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)