update defaults
Browse files
app.py
CHANGED
@@ -126,7 +126,7 @@ with gr.Blocks() as demo:
|
|
126 |
|
127 |
prompt = gr.Textbox(
|
128 |
label="Prompt",
|
129 |
-
value="
|
130 |
lines=3
|
131 |
)
|
132 |
|
@@ -138,15 +138,15 @@ with gr.Blocks() as demo:
|
|
138 |
|
139 |
with gr.Row():
|
140 |
lora_id = gr.Textbox(
|
141 |
-
label="LoRA
|
142 |
-
value="
|
143 |
)
|
144 |
|
145 |
with gr.Row():
|
146 |
lora_weight_name = gr.Textbox(
|
147 |
-
label="LoRA
|
148 |
-
value="",
|
149 |
-
info="
|
150 |
)
|
151 |
lora_scale = gr.Slider(
|
152 |
label="LoRA Scale",
|
@@ -215,7 +215,7 @@ with gr.Blocks() as demo:
|
|
215 |
label="Inference Steps",
|
216 |
minimum=10,
|
217 |
maximum=100,
|
218 |
-
value=
|
219 |
step=1
|
220 |
)
|
221 |
|
|
|
126 |
|
127 |
prompt = gr.Textbox(
|
128 |
label="Prompt",
|
129 |
+
value="",
|
130 |
lines=3
|
131 |
)
|
132 |
|
|
|
138 |
|
139 |
with gr.Row():
|
140 |
lora_id = gr.Textbox(
|
141 |
+
label="LoRA Model Repo (e.g., TheBulge/AndroWan-2.1-T2V-1.3B)",
|
142 |
+
value="TheBulge/AndroWan-2.1-T2V-1.3B"
|
143 |
)
|
144 |
|
145 |
with gr.Row():
|
146 |
lora_weight_name = gr.Textbox(
|
147 |
+
label="LoRA Path in Repo (optional)",
|
148 |
+
value="safetensors/AndroWan_v32-0036_ema.safetensors",
|
149 |
+
info="Specify for repos with multiple .safetensors files, e.g.: adapter_model.safetensors, pytorch_lora_weights.safetensors, etc."
|
150 |
)
|
151 |
lora_scale = gr.Slider(
|
152 |
label="LoRA Scale",
|
|
|
215 |
label="Inference Steps",
|
216 |
minimum=10,
|
217 |
maximum=100,
|
218 |
+
value=24,
|
219 |
step=1
|
220 |
)
|
221 |
|