Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -30,8 +30,8 @@ with gr.Blocks() as demo:
|
|
30 |
# negative_prompt = gr.Textbox(label="Negative prompt")
|
31 |
with gr.Row():
|
32 |
with gr.Column():
|
33 |
-
steps =
|
34 |
-
info="In many steps will the denoiser denoise the image?")
|
35 |
guidance = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=20.0, value=7.0,
|
36 |
info="Controls how much the text prompt influences the result")
|
37 |
with gr.Column():
|
|
|
30 |
# negative_prompt = gr.Textbox(label="Negative prompt")
|
31 |
with gr.Row():
|
32 |
with gr.Column():
|
33 |
+
steps = gr.Slider(label="Inference Steps", minimum=1, maximum=100, value=25,
|
34 |
+
info="In many steps will the denoiser denoise the image?")
|
35 |
guidance = gr.Slider(label="Guidance Scale", minimum=1.0, maximum=20.0, value=7.0,
|
36 |
info="Controls how much the text prompt influences the result")
|
37 |
with gr.Column():
|