DamarJati commited on
Commit
1ef4f73
·
verified ·
1 Parent(s): ebab327

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -5
app.py CHANGED
@@ -320,15 +320,12 @@ with gr.Blocks(css= "style.css") as app:
320
  seed_input = gr.Number(label="Seed", value=-1)
321
 
322
  with gr.Row():
323
- width_input = gr.Slider(minimum=128, maximum=2048, step=128, label="Width", value=512)
324
  steps = gr.Slider(minimum=1, maximum=100, step=1, label="Steps", value=20)
325
-
326
- with gr.Row():
327
- height_input = gr.Slider(minimum=128, maximum=2048, step=128, label="Height", value=512)
328
  cfg_scale = gr.Slider(minimum=1, maximum=24, step=1, label="CFG Scale", value=7)
329
-
330
  with gr.Row():
331
  strength = gr.Slider(minimum=0, maximum=1, step=0.1, label="Strength", value=0.6)
 
332
  with gr.Column():
333
  output_image_i2i = gr.Image(label="Hasil Gambar")
334
 
 
320
  seed_input = gr.Number(label="Seed", value=-1)
321
 
322
  with gr.Row():
 
323
  steps = gr.Slider(minimum=1, maximum=100, step=1, label="Steps", value=20)
 
 
 
324
  cfg_scale = gr.Slider(minimum=1, maximum=24, step=1, label="CFG Scale", value=7)
325
+
326
  with gr.Row():
327
  strength = gr.Slider(minimum=0, maximum=1, step=0.1, label="Strength", value=0.6)
328
+
329
  with gr.Column():
330
  output_image_i2i = gr.Image(label="Hasil Gambar")
331