prithivMLmods commited on
Commit
fae9705
1 Parent(s): aa76c85

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -8
app.py CHANGED
@@ -185,6 +185,13 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
185
  )
186
  run_button = gr.Button("Run", scale=0)
187
  result = gr.Gallery(label="Result", columns=1, preview=True, show_label=False)
 
 
 
 
 
 
 
188
 
189
  with gr.Accordion("Advanced options", open=False, visible=False):
190
  use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
@@ -239,14 +246,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
239
  value=DEFAULT_STYLE_NAME,
240
  label="Quality Style",
241
  )
242
-
243
- with gr.Row(visible=True):
244
- model_choice = gr.Dropdown(
245
- label="LoRA Selection",
246
- choices=list(LORA_OPTIONS.keys()),
247
- value="Realism (face/character)👦🏻"
248
- )
249
-
250
  gr.Examples(
251
  examples=examples,
252
  inputs=prompt,
 
185
  )
186
  run_button = gr.Button("Run", scale=0)
187
  result = gr.Gallery(label="Result", columns=1, preview=True, show_label=False)
188
+
189
+ with gr.Row(visible=True):
190
+ model_choice = gr.Dropdown(
191
+ label="LoRA Selection",
192
+ choices=list(LORA_OPTIONS.keys()),
193
+ value="Realism (face/character)👦🏻"
194
+ )
195
 
196
  with gr.Accordion("Advanced options", open=False, visible=False):
197
  use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
 
246
  value=DEFAULT_STYLE_NAME,
247
  label="Quality Style",
248
  )
249
+
 
 
 
 
 
 
 
250
  gr.Examples(
251
  examples=examples,
252
  inputs=prompt,