fffiloni commited on
Commit
12f50e0
1 Parent(s): 9c28715

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ with gr.Blocks(css=css) as demo:
77
  textbox = gr.Textbox(show_label=False, value="a person facing the camera, making a hand gesture, indoor")
78
  seed = gr.Slider(label="Seed", minimum=0, maximum=1000000, value=643534)
79
  button = gr.Button()
80
- output_image = gr.Image(show_label=False, type="filepath", interactive=False, height=512, width=512)
81
 
82
  button.click(fn=generate, inputs=[image, textbox, seed], outputs=[output_image])
83
 
 
77
  textbox = gr.Textbox(show_label=False, value="a person facing the camera, making a hand gesture, indoor")
78
  seed = gr.Slider(label="Seed", minimum=0, maximum=1000000, value=643534)
79
  button = gr.Button()
80
+ output_image = gr.Image(show_label=False, type="filepath", interactive=False)
81
 
82
  button.click(fn=generate, inputs=[image, textbox, seed], outputs=[output_image])
83