Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -102,7 +102,7 @@ with gr.Blocks(theme='Nymbo/Nymbo_Theme', css=css) as app:
|
|
102 |
seed = gr.Slider(label="Seed", value=-1, minimum=-1, maximum=1000000000, step=1) # Setting the seed to -1 will make it random
|
103 |
method = gr.Radio(label="Sampling method", value="DPM++ 2M Karras", choices=["DPM++ 2M Karras", "DPM++ SDE Karras", "Euler", "Euler a", "Heun", "DDIM"])
|
104 |
|
105 |
-
# Add a button to trigger the image generation
|
106 |
with gr.Row():
|
107 |
text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
|
108 |
|
|
|
102 |
seed = gr.Slider(label="Seed", value=-1, minimum=-1, maximum=1000000000, step=1) # Setting the seed to -1 will make it random
|
103 |
method = gr.Radio(label="Sampling method", value="DPM++ 2M Karras", choices=["DPM++ 2M Karras", "DPM++ SDE Karras", "Euler", "Euler a", "Heun", "DDIM"])
|
104 |
|
105 |
+
#h Add a button to trigger the image generation
|
106 |
with gr.Row():
|
107 |
text_button = gr.Button("Run", variant='primary', elem_id="gen-button")
|
108 |
|