burman-ai commited on
Commit
19a57e1
·
verified ·
1 Parent(s): 9b2a82c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -78,7 +78,7 @@ css = """
78
  # Build the Gradio UI with Blocks
79
  with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
80
  # Add a title to the app
81
- gr.HTML("<center><h1>FLUX.1-Schnell</h1></center>")
82
 
83
  # Container for all the UI elements
84
  with gr.Column(elem_id="app-container"):
@@ -95,11 +95,11 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
95
  with gr.Row():
96
  width = gr.Slider(label="Width", value=512, minimum=256, maximum=1024, step=64)
97
  height = gr.Slider(label="Height", value=512, minimum=256, maximum=1024, step=64)
98
- steps = gr.Slider(label="Sampling steps", value=4, minimum=1, maximum=100, step=1)
99
  cfg = gr.Slider(label="CFG Scale", value=7, minimum=1, maximum=20, step=1)
100
  strength = gr.Slider(label="Strength", value=0.7, minimum=0, maximum=1, step=0.001)
101
  seed = gr.Slider(label="Seed", value=-1, minimum=-1, maximum=1000000000, step=1) # Setting the seed to -1 will make it random
102
- method = gr.Radio(label="Sampling method", value="DDIM", choices=["DPM++ 2M Karras", "DPM++ SDE Karras", "Euler", "Euler a", "Heun", "DDIM"])
103
 
104
  # Add a button to trigger the image generation
105
  with gr.Row():
 
78
  # Build the Gradio UI with Blocks
79
  with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
80
  # Add a title to the app
81
+ gr.HTML("<center><h1>Text to Image Generator</h1></center>")
82
 
83
  # Container for all the UI elements
84
  with gr.Column(elem_id="app-container"):
 
95
  with gr.Row():
96
  width = gr.Slider(label="Width", value=512, minimum=256, maximum=1024, step=64)
97
  height = gr.Slider(label="Height", value=512, minimum=256, maximum=1024, step=64)
98
+ steps = gr.Slider(label="Steps", value=4, minimum=1, maximum=100, step=1)
99
  cfg = gr.Slider(label="CFG Scale", value=7, minimum=1, maximum=20, step=1)
100
  strength = gr.Slider(label="Strength", value=0.7, minimum=0, maximum=1, step=0.001)
101
  seed = gr.Slider(label="Seed", value=-1, minimum=-1, maximum=1000000000, step=1) # Setting the seed to -1 will make it random
102
+ method = gr.Radio(label="Method", value="DDIM", choices=["DPM++ 2M Karras", "DPM++ SDE Karras", "Euler", "Euler a", "Heun", "DDIM"])
103
 
104
  # Add a button to trigger the image generation
105
  with gr.Row():