Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ sampling_method = gr.Radio(
|
|
14 |
["random", "greedy", "nucleus", "top_k", "top_p"], label="Sampling Method"
|
15 |
)
|
16 |
sampling_steps = gr.Number(
|
17 |
-
label="Sampling Steps",
|
18 |
)
|
19 |
cfg_scale = gr.Number(label="CFG Scale", min=0.1, max=10.0, default=1.0)
|
20 |
seed = gr.Number(label="Seed", min=0, max=2**31, default=0)
|
|
|
14 |
["random", "greedy", "nucleus", "top_k", "top_p"], label="Sampling Method"
|
15 |
)
|
16 |
sampling_steps = gr.Number(
|
17 |
+
label="Sampling Steps", value=30, minimum=1, maximum=100
|
18 |
)
|
19 |
cfg_scale = gr.Number(label="CFG Scale", min=0.1, max=10.0, default=1.0)
|
20 |
seed = gr.Number(label="Seed", min=0, max=2**31, default=0)
|