Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -51,10 +51,10 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", fill_width=True, css=css) as demo:
|
|
51 |
prompt = gr.Text(label="Prompt", lines=2, max_lines=8, placeholder="1girl, solo, ...", show_copy_button=True)
|
52 |
neg_prompt = gr.Text(label="Negative Prompt", lines=1, max_lines=8, placeholder="", visible=False)
|
53 |
with gr.Accordion("Advanced options", open=False):
|
54 |
-
width = gr.Number(label="Width", info="If 0, the default value is used.", maximum=1216, step=32, value=
|
55 |
-
height = gr.Number(label="Height", info="If 0, the default value is used.", maximum=1216, step=32, value=
|
56 |
-
steps = gr.Number(label="Number of inference steps", info="If 0, the default value is used.", maximum=100, step=1, value=
|
57 |
-
cfg = gr.Number(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=
|
58 |
with gr.Accordion("Recommended Prompt", open=False):
|
59 |
recom_prompt_preset = gr.Radio(label="Set Presets", choices=get_recom_prompt_type(), value="Common")
|
60 |
with gr.Row():
|
|
|
51 |
prompt = gr.Text(label="Prompt", lines=2, max_lines=8, placeholder="1girl, solo, ...", show_copy_button=True)
|
52 |
neg_prompt = gr.Text(label="Negative Prompt", lines=1, max_lines=8, placeholder="", visible=False)
|
53 |
with gr.Accordion("Advanced options", open=False):
|
54 |
+
width = gr.Number(label="Width", info="If 0, the default value is used.", maximum=1216, step=32, value=0)
|
55 |
+
height = gr.Number(label="Height", info="If 0, the default value is used.", maximum=1216, step=32, value=0)
|
56 |
+
steps = gr.Number(label="Number of inference steps", info="If 0, the default value is used.", maximum=100, step=1, value=0)
|
57 |
+
cfg = gr.Number(label="Guidance scale", info="If 0, the default value is used.", maximum=30.0, step=0.1, value=0)
|
58 |
with gr.Accordion("Recommended Prompt", open=False):
|
59 |
recom_prompt_preset = gr.Radio(label="Set Presets", choices=get_recom_prompt_type(), value="Common")
|
60 |
with gr.Row():
|