Linoy Tsaban commited on
Commit
e979ff7
1 Parent(s): 67f8bab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -611,7 +611,7 @@ with gr.Blocks(css="style.css") as demo:
611
  reconstruct_button = gr.Button("Show Reconstruction", visible=False)
612
  skip = gr.Slider(minimum=0, maximum=95, value=25, step=1, label="Skip Steps", interactive=True, info = "Percentage of skipped denoising steps. Bigger values increase fidelity to input image")
613
  tar_cfg_scale = gr.Slider(minimum=1, maximum=30,value=7.5, label=f"Guidance Scale", interactive=True)
614
- seed = gr.Number(value=0, precision=0, label="Seed", interactive=True, randomize=True)
615
  randomize_seed = gr.Checkbox(label='Randomize seed', value=False)
616
 
617
  with gr.TabItem('SEGA options', id=3) as sega_advanced_tab:
 
611
  reconstruct_button = gr.Button("Show Reconstruction", visible=False)
612
  skip = gr.Slider(minimum=0, maximum=95, value=25, step=1, label="Skip Steps", interactive=True, info = "Percentage of skipped denoising steps. Bigger values increase fidelity to input image")
613
  tar_cfg_scale = gr.Slider(minimum=1, maximum=30,value=7.5, label=f"Guidance Scale", interactive=True)
614
+ seed = gr.Slider(minimum=0, maximum=np.iinfo(np.int32).max, label="Seed", interactive=True, randomize=True)
615
  randomize_seed = gr.Checkbox(label='Randomize seed', value=False)
616
 
617
  with gr.TabItem('SEGA options', id=3) as sega_advanced_tab: