Vignesh455 commited on
Commit
7bf703f
1 Parent(s): 681c6e1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -91,7 +91,7 @@ with image_blocks as demo:
91
  steps = gr.Number(value=20, minimum=10, maximum=30, step=1, label="steps")
92
  strength = gr.Number(value=0.99, minimum=0.01, maximum=1.0, step=0.01, label="strength")
93
  negative_prompt = gr.Textbox(label="negative_prompt", placeholder="Your negative prompt", info="what you don't want to see in the image")
94
- with gr.Row(mobile_collapse=False, equal_height=True):
95
  schedulers = ["DEISMultistepScheduler", "HeunDiscreteScheduler", "EulerDiscreteScheduler", "DPMSolverMultistepScheduler", "DPMSolverMultistepScheduler-Karras", "DPMSolverMultistepScheduler-Karras-SDE"]
96
  scheduler = gr.Dropdown(label="Schedulers", choices=schedulers, value="EulerDiscreteScheduler")
97
 
 
91
  steps = gr.Number(value=20, minimum=10, maximum=30, step=1, label="steps")
92
  strength = gr.Number(value=0.99, minimum=0.01, maximum=1.0, step=0.01, label="strength")
93
  negative_prompt = gr.Textbox(label="negative_prompt", placeholder="Your negative prompt", info="what you don't want to see in the image")
94
+ with gr.Row(equal_height=True):
95
  schedulers = ["DEISMultistepScheduler", "HeunDiscreteScheduler", "EulerDiscreteScheduler", "DPMSolverMultistepScheduler", "DPMSolverMultistepScheduler-Karras", "DPMSolverMultistepScheduler-Karras-SDE"]
96
  scheduler = gr.Dropdown(label="Schedulers", choices=schedulers, value="EulerDiscreteScheduler")
97