markury commited on
Commit
f735e48
·
1 Parent(s): 1ead6f2

update defaults

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -126,7 +126,7 @@ with gr.Blocks() as demo:
126
 
127
  prompt = gr.Textbox(
128
  label="Prompt",
129
- value="steamboat willie style, golden era animation, an anthropomorphic cat character wearing a hat removes it and performs a courteous bow",
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 ID (e.g., benjamin-paine/steamboat-willie-1.3b)",
142
- value="benjamin-paine/steamboat-willie-1.3b"
143
  )
144
 
145
  with gr.Row():
146
  lora_weight_name = gr.Textbox(
147
- label="LoRA Weight Name (optional, specify for repos with multiple .safetensors files)",
148
- value="",
149
- info="Example: adapter_model.safetensors, pytorch_lora_weights.safetensors, etc."
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=20,
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