prithivMLmods commited on
Commit
a0992e7
1 Parent(s): df49a2e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -6
app.py CHANGED
@@ -323,6 +323,13 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
323
  run_button = gr.Button("Run")
324
  result = gr.Gallery(label="Grid", columns=1, preview=True)
325
 
 
 
 
 
 
 
 
326
 
327
  with gr.Row(visible=True):
328
  filter_selection = gr.Radio(
@@ -353,12 +360,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
353
  value=DEFAULT_COLLAGE_STYLE_NAME,
354
  label="Collage Template",
355
  )
356
- with gr.Row(visible=True):
357
- grid_size_selection = gr.Dropdown(
358
- choices=["2x1", "1x2", "2x2", "2x3", "3x2", "1x1"],
359
- value="2x2",
360
- label="Grid Size"
361
- )
362
 
363
  with gr.Accordion("Advanced options", open=False):
364
  use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True, visible=True)
 
323
  run_button = gr.Button("Run")
324
  result = gr.Gallery(label="Grid", columns=1, preview=True)
325
 
326
+
327
+ with gr.Row(visible=True):
328
+ grid_size_selection = gr.Dropdown(
329
+ choices=["2x1", "1x2", "2x2", "2x3", "3x2", "1x1"],
330
+ value="2x2",
331
+ label="Grid Size"
332
+ )
333
 
334
  with gr.Row(visible=True):
335
  filter_selection = gr.Radio(
 
360
  value=DEFAULT_COLLAGE_STYLE_NAME,
361
  label="Collage Template",
362
  )
363
+
 
 
 
 
 
364
 
365
  with gr.Accordion("Advanced options", open=False):
366
  use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True, visible=True)