fffiloni commited on
Commit
038916c
1 Parent(s): 917608d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -255,7 +255,8 @@ with gr.Blocks(css=css) as demo:
255
  with gr.Group():
256
  guidance_scale = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=10.0, step=0.1, value=7.5)
257
  inf_steps = gr.Slider(label="Inference Steps", minimum="25", maximum="50", step=1, value=25)
258
-
 
259
  with gr.Column():
260
  with gr.Group():
261
  preprocessor = gr.Dropdown(label="Preprocessor", choices=["canny"], value="canny", interactive=False, info="For the moment, only canny is available")
@@ -318,9 +319,6 @@ with gr.Blocks(css=css) as demo:
318
  elem_id = "status_info"
319
  )
320
  trigger_word = gr.Textbox(label="Trigger word", interactive=False, visible=False)
321
-
322
- with gr.Column():
323
- custom_lora_weight = gr.Slider(label="Custom model weights", minimum=0.1, maximum=0.9, step=0.1, value=0.9)
324
 
325
  submit_btn = gr.Button("Submit")
326
 
 
255
  with gr.Group():
256
  guidance_scale = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=10.0, step=0.1, value=7.5)
257
  inf_steps = gr.Slider(label="Inference Steps", minimum="25", maximum="50", step=1, value=25)
258
+ custom_lora_weight = gr.Slider(label="Custom model weights", minimum=0.1, maximum=0.9, step=0.1, value=0.9)
259
+
260
  with gr.Column():
261
  with gr.Group():
262
  preprocessor = gr.Dropdown(label="Preprocessor", choices=["canny"], value="canny", interactive=False, info="For the moment, only canny is available")
 
319
  elem_id = "status_info"
320
  )
321
  trigger_word = gr.Textbox(label="Trigger word", interactive=False, visible=False)
 
 
 
322
 
323
  submit_btn = gr.Button("Submit")
324