Spaces:
Running
Running
Upload app.py
Browse files
app.py
CHANGED
@@ -44,8 +44,8 @@ It saves you the trouble of typing them in.<br>
|
|
44 |
civitai_key = gr.Textbox(label="Your Civitai API Key (Optional)", info="If you download model from Civitai...", placeholder="", value="", max_lines=1)
|
45 |
is_half = gr.Checkbox(label="Half precision", value=True)
|
46 |
model_type = gr.Radio(label="Model type", choices=["v1", "v2"], value="v1")
|
47 |
-
sample_size = gr.Radio(label="Sample size (px)", choices=[512, 768], value=768)
|
48 |
-
ema = gr.Radio(label="Extract EMA or non-EMA?", choices=["ema", "non-ema"], value="ema")
|
49 |
vae = gr.Dropdown(label="VAE", choices=vaes, value="", allow_custom_value=True)
|
50 |
scheduler = gr.Dropdown(label="Scheduler (Sampler)", choices=schedulers, value="Euler a")
|
51 |
lora1 = gr.Dropdown(label="LoRA1", choices=loras, value="", allow_custom_value=True)
|
|
|
44 |
civitai_key = gr.Textbox(label="Your Civitai API Key (Optional)", info="If you download model from Civitai...", placeholder="", value="", max_lines=1)
|
45 |
is_half = gr.Checkbox(label="Half precision", value=True)
|
46 |
model_type = gr.Radio(label="Model type", choices=["v1", "v2"], value="v1")
|
47 |
+
sample_size = gr.Radio(label="Sample size (px)", choices=[512, 768], value=768)
|
48 |
+
ema = gr.Radio(label="Extract EMA or non-EMA?", choices=["ema", "non-ema"], value="ema")
|
49 |
vae = gr.Dropdown(label="VAE", choices=vaes, value="", allow_custom_value=True)
|
50 |
scheduler = gr.Dropdown(label="Scheduler (Sampler)", choices=schedulers, value="Euler a")
|
51 |
lora1 = gr.Dropdown(label="LoRA1", choices=loras, value="", allow_custom_value=True)
|